loggly-console-logger

2.0.1 • Public • Published

Loggly Console Logger

Dependency Status

Winston-based logger that outputs to the console and loggly if the loggly input token is set in the nconf object

Installation

npm install -S loggly-console-logger

Usage

To use send your logs to loggly, you must first specify your inputToken and subdomain in the nconf object. Only logs with the level info and higher will be sent to loggly. Any debug level logging statements are only logged to the console

var nconf = require('nconf').argv().env().defaults({
  loggly: {
    inputToken: 'foo-loggly-input-token-here',
    subdomain: 'foo'
  }
})
 
var logger = require('logger')
logger.debug('this will be logged to the console only')
logger.info('this will be logged to the console and submitted to loggly as well')

Dependencies (2)

Dev Dependencies (2)

Package Sidebar

Install

npm i loggly-console-logger

Weekly Downloads

3

Version

2.0.1

License

BSD

Last publish

Collaborators

  • clewfirst