Skip to content

Commit 3a90b07

Browse files
committed
fix equality operator in logger.js
1 parent bbe2de5 commit 3a90b07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/logger.js

Lines changed: 1 addition & 1 deletion
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 || process.env.NODE_COVERALLS_DEBUG == 1) {
9+
if (index.options.verbose || process.env.NODE_COVERALLS_DEBUG === 1) {
1010
return 'debug';
1111
}
1212

0 commit comments

Comments
 (0)