Skip to content

Instantly share code, notes, and snippets.

@chakrit
Last active December 21, 2015 08:39
Show Gist options
  • Save chakrit/6280041 to your computer and use it in GitHub Desktop.
Save chakrit/6280041 to your computer and use it in GitHub Desktop.
var bunyan = require('bunyan')
, logger = null;
function thisIsNotOk() {
logger = bunyan.createLogger(
{ name: 'test'
, streams: [
{ type: 'rotating-file'
, path: 'test.log' }]
});
}
thisIsNotOk();
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