Last active
December 21, 2015 08:39
-
-
Save chakrit/6280041 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var bunyan = require('bunyan') | |
, logger = null; | |
function thisIsNotOk() { | |
logger = bunyan.createLogger( | |
{ name: 'test' | |
, streams: [ | |
{ type: 'rotating-file' | |
, path: 'test.log' }] | |
}); | |
} | |
thisIsNotOk(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var bunyan = require('bunyan') | |
, logger = null; | |
function thisIsOk() { | |
logger = bunyan.createLogger( | |
{ name: 'test' | |
, streams: [{ stream: process.stdout }] | |
}); | |
} | |
thisIsOk(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment