Skip to content

Instantly share code, notes, and snippets.

@thiagomr
Last active March 12, 2018 19:49
Show Gist options
  • Select an option

  • Save thiagomr/5aad648d4e5638021d1bbb1bb98cce74 to your computer and use it in GitHub Desktop.

Select an option

Save thiagomr/5aad648d4e5638021d1bbb1bb98cce74 to your computer and use it in GitHub Desktop.
import winston from 'winston';
const logger = new (winston.Logger) ({
'transports': [new (winston.transports.Console)({
'colorize': true,
'prettyPrint': true,
'timestamp': () => moment().tz('America/Sao_Paulo').format('YYYY-MM-DD HH:mm:ss'),
})]
});
export default logger;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment