Skip to content

Commit

Permalink
refactor: set consoleLevel WARN of coreLogger in local (#850)
Browse files Browse the repository at this point in the history
This config is removed by PR #695,
but the infomation of coreLogger is not useful for app developer,
and this config won't changed by app developer
  • Loading branch information
popomore authored and fengmk2 committed May 5, 2017
1 parent af174ef commit bd0a827
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions config/config.local.js
@@ -0,0 +1,7 @@
'use strict';

exports.logger = {
coreLogger: {
consoleLevel: 'WARN',
},
};
2 changes: 1 addition & 1 deletion test/lib/core/logger.test.js
Expand Up @@ -39,7 +39,7 @@ describe('test/lib/core/logger.test.js', () => {
assert(app.logger.get('file').options.level === Logger.INFO);
assert(app.logger.get('console').options.level === Logger.INFO);
assert(app.coreLogger.get('file').options.level === Logger.INFO);
assert(app.coreLogger.get('console').options.level === Logger.INFO);
assert(app.coreLogger.get('console').options.level === Logger.WARN);
});

it('should set EGG_LOG level on local env', function* () {
Expand Down

0 comments on commit bd0a827

Please sign in to comment.