1.0.3 • Published 7 years ago

@recipher/log v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

@recipher/log

Log helper with sane defaults.

Usage

Logs to the console by default.

Use configuration to log to file:

{
  "LOGGING": "file"
}

Or to Papertrail:

{
  "LOGGING": "papertrail"
, "PAPERTRAIL": {
    "HOST": "..."
  , "PORT": 1234
  }
}

To write to the log:

var log = require('@recipher/log');

log.info('Information');
log.warn('Warning');
log.error('Error');
log.debug('Debug');