UNPKG

334 BJavaScriptView Raw
1'use strict';
2
3const logDriver = require('log-driver');
4const index = require('..');
5
6module.exports = () => logDriver({ level: getLogLevel() });
7
8function getLogLevel() {
9 if (index.options.verbose || process.env.NODE_COVERALLS_DEBUG === 1 || process.env.NODE_COVERALLS_DEBUG === '1') {
10 return 'debug';
11 }
12
13 return 'error';
14}