blob: f834586d4e99392b6cb14f12bbc718e959f5f9e8 (
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 'warn';
}
return 'error';
}
function hasDebugEnvVariable(){
return process.env.NODE_COVERALLS_DEBUG == 1;
}
|