File tree 2 files changed +12
-2
lines changed 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 3
3
function func ( config ) {
4
4
5
5
// level of logging
6
- // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
6
+ // possible values:
7
+ // - config.LOG_DISABLE
8
+ // - config.LOG_ERROR
9
+ // - config.LOG_WARN
10
+ // - config.LOG_INFO
11
+ // - config.LOG_DEBUG
7
12
func . defaultConfig . logLevel = config . LOG_INFO ;
8
13
9
14
// Continuous Integration mode
Original file line number Diff line number Diff line change @@ -18,7 +18,12 @@ var testFileGlob = process.argv[4] ? process.argv[4] : 'tests/*_test.js';
18
18
function func ( config ) {
19
19
20
20
// level of logging
21
- // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
21
+ // possible values:
22
+ // - config.LOG_DISABLE
23
+ // - config.LOG_ERROR
24
+ // - config.LOG_WARN
25
+ // - config.LOG_INFO
26
+ // - config.LOG_DEBUG
22
27
func . defaultConfig . logLevel = config . LOG_INFO ;
23
28
24
29
config . set ( func . defaultConfig ) ;
You can’t perform that action at this time.
0 commit comments