@recipher/log

Log helper with sane defaults.

Usage no npm install needed!

<script type="module">
  import recipherLog from 'https://cdn.skypack.dev/@recipher/log';
</script>

README

@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');