Skip to content

Instantly share code, notes, and snippets.

@wookiehangover
Created April 4, 2013 18:54
Show Gist options
  • Save wookiehangover/5313101 to your computer and use it in GitHub Desktop.
Save wookiehangover/5313101 to your computer and use it in GitHub Desktop.
var logStream = {
write: function(msg){
// strip duplicate newlines from the end of Express log messages
msg = msg.substr(0, msg.length - 1);
winston.info(msg);
}
};
app.use(express.logger({ stream: logStream, format: 'dev' }));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment