Skip to content

Instantly share code, notes, and snippets.

@haldarmahesh
Created September 3, 2019 17:38
Show Gist options
  • Save haldarmahesh/c5d4b7927227e1627c64a5da73092e61 to your computer and use it in GitHub Desktop.
Save haldarmahesh/c5d4b7927227e1627c64a5da73092e61 to your computer and use it in GitHub Desktop.
import winston from 'winston';
const logger = winston.createLogger({
level: 'info',
format: winston.format.json(),
transports: [
//
new winston.transports.File({ filename: 'stdout.log' })
]
});
export default logger;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment