Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Commit

Permalink
Fix lint errors. Strings use single quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
onefrankguy committed Jun 13, 2016
1 parent 00b1a71 commit a3bdf94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/logger.js
Expand Up @@ -61,7 +61,7 @@ function RequestLogger(logger, level) {
return expressWinston.logger({
winstonInstance: logger,
expressFormat: false,
msg: "{{req.method}} {{req.url}} {{res.statusCode}} {{res.responseTime}}ms",
msg: '{{req.method}} {{req.url}} {{res.statusCode}} {{res.responseTime}}ms',
level: logLevel,
baseMeta: {sourceName: 'request'}
});
Expand Down

0 comments on commit a3bdf94

Please sign in to comment.