bithavoc / express-winston

express.js middleware for winstonjs
https://www.npmjs.com/package/express-winston
MIT License
797 stars 186 forks source link

Timestamp #238

Closed NicholasTing closed 2 years ago

NicholasTing commented 4 years ago

Is there any way to include time stamp with express-winston?

nhyatt commented 4 years ago
format: winston.format.combine(
  winston.format.timestamp({
    format: 'YYYY-MM-DD HH:mm:ss'
  }),
  // other formats here
)