Skip to content

Instantly share code, notes, and snippets.

@mrister
Created May 12, 2017 07:28
Show Gist options
  • Save mrister/f2d800df8ac2c1c5eccafa135a8136dd to your computer and use it in GitHub Desktop.
Save mrister/f2d800df8ac2c1c5eccafa135a8136dd to your computer and use it in GitHub Desktop.
Configure Winston transports
const winston = require('winston');
winston.loggers.add('development', {
console: {
level: 'silly',
colorize: 'true',
label: 'category one'
},
file: {
filename: './somefile.log',
level: 'warn'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment