Skip to content

Commit

Permalink
馃帹 remove domain string replacement for logging (#8011)
Browse files Browse the repository at this point in the history
no issue
  • Loading branch information
kirrg001 committed Feb 17, 2017
1 parent dcca1aa commit 27f7b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/server/logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var config = require('./config'),
module.exports = logging({
env: config.get('env'),
path: config.get('logging:path') || config.getContentPath('logs'),
domain: config.get('url').replace(/[^\w]/gi, '_'),
domain: config.get('url'),
mode: config.get('logging:mode'),
level: config.get('logging:level'),
transports: config.get('logging:transports'),
Expand Down

0 comments on commit 27f7b72

Please sign in to comment.