Skip to content

Commit

Permalink
Fix logs files names (winstonjs#1651)
Browse files Browse the repository at this point in the history
  • Loading branch information
atefBB authored and DABH committed Jun 29, 2019
1 parent ac5e57a commit 7253765
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/quick-start.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const logger = createLogger({
defaultMeta: { service: 'your-service-name' },
transports: [
//
// - Write to all logs with level `info` and below to `combined.log`
// - Write all logs error (and below) to `error.log`.
// - Write to all logs with level `info` and below to `quick-start-combined.log`.
// - Write all logs error (and below) to `quick-start-error.log`.
//
new transports.File({ filename: 'quick-start-error.log', level: 'error' }),
new transports.File({ filename: 'quick-start-combined.log' })
Expand Down

0 comments on commit 7253765

Please sign in to comment.