HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/share/node_modules/coveralls/lib/
Upload File :
Current File : //proc/self/root/usr/share/node_modules/coveralls/lib/logger.js
'use strict';

const logDriver = require('log-driver');
const index = require('..');

module.exports = () => logDriver({ level: getLogLevel() });

function getLogLevel() {
  if (index.options.verbose || process.env.NODE_COVERALLS_DEBUG === 1 || process.env.NODE_COVERALLS_DEBUG === '1') {
    return 'debug';
  }

  return 'error';
}