blob: 1c2ba68d0099ee3e2c34cf43b29e472e4a36b9bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
var index = require('../index');
module.exports = function(){
return require('log-driver')({level : getLogLevel()});
};
function getLogLevel(){
if (index.options.verbose || hasDebugEnvVariable()) {
return 'debug';
}
return 'error';
}
function hasDebugEnvVariable(){
return process.env.NODE_COVERALLS_DEBUG == 1;
}
|