diff options
| author | Nick Merwin <[email protected]> | 2019-11-25 13:27:22 -0800 |
|---|---|---|
| committer | Nick Merwin <[email protected]> | 2019-11-25 13:27:22 -0800 |
| commit | 3a90b074f6ccefd48b56103d3fd80ca41a7f18e2 (patch) | |
| tree | 6294e55f92caae7782a4f5fc9b8bf2106e70c809 /lib | |
| parent | bbe2de5f5da546e2af095d00f585b73730bd9205 (diff) | |
| download | node-coveralls-3a90b074f6ccefd48b56103d3fd80ca41a7f18e2.tar.xz node-coveralls-3a90b074f6ccefd48b56103d3fd80ca41a7f18e2.zip | |
fix equality operator in logger.js
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/logger.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/logger.js b/lib/logger.js index 39408f8..daba4d3 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -6,7 +6,7 @@ const index = require('..'); module.exports = () => logDriver({ level: getLogLevel() }); function getLogLevel() { - if (index.options.verbose || process.env.NODE_COVERALLS_DEBUG == 1) { + if (index.options.verbose || process.env.NODE_COVERALLS_DEBUG === 1) { return 'debug'; } |
