Skip to content

Instantly share code, notes, and snippets.

@ameensol
Created January 30, 2015 02:55
Show Gist options
  • Save ameensol/c6010232035c8603f562 to your computer and use it in GitHub Desktop.
Save ameensol/c6010232035c8603f562 to your computer and use it in GitHub Desktop.
var logger = new (winston.Logger)({
transports: [
new (winston.transports.File)({ filename: 'error.log', level: 'error', handleExceptions: true}),
new (winston.transports.File)({ filename: 'info.log', level: 'info'}),
new (winston.transports.File)({ filename: 'logs.log'}),
new (winston.transports.Console)({ colorize: true })
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment