Skip to content

Commit 07ef879

Browse files
XhmikosRnickmerwin
authored andcommitted
Fix logger regression.
1 parent f58f8b9 commit 07ef879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/logger.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const index = require('..');
66
module.exports = () => logDriver({ level: getLogLevel() });
77

88
function getLogLevel() {
9-
if (index.options.verbose || Boolean(process.env.NODE_COVERALLS_DEBUG)) {
9+
if (index.options.verbose || process.env.NODE_COVERALLS_DEBUG == 1) {
1010
return 'debug';
1111
}
1212

0 commit comments

Comments
 (0)