Skip to content

Instantly share code, notes, and snippets.

@dmukhg
Created January 5, 2016 03:37
Show Gist options
  • Select an option

  • Save dmukhg/2c2bea4647203ef703ad to your computer and use it in GitHub Desktop.

Select an option

Save dmukhg/2c2bea4647203ef703ad to your computer and use it in GitHub Desktop.

Revisions

  1. dmukhg created this gist Jan 5, 2016.
    9 changes: 9 additions & 0 deletions winston-bootstrap-with-error.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    var SomeService = require('./SomeService');
    var config = require('config');
    var winstonConfig = require('winston-config');

    winstonConfig.fromJson(config.get('logging'), function (err, winston) {
    // Handle error
    var logger = winston.loggers.get('protocol');
    logger.info('Started application');
    }