You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thumbsup/bin/log.js

18 lines
766 B
JavaScript

const debug = require('debug')
exports.init = (logLevel) => {
// enable particular debug() prefixes
if (logLevel === 'trace') debug.enable('*')
if (logLevel === 'debug') debug.enable('thumbsup:error,thumbsup:warn,thumbsup:info,thumbsup:debug')
if (logLevel === 'info') debug.enable('thumbsup:error,thumbsup:warn,thumbsup:info')
// when running in text-mode, make sure all console.log() calls go through debug()
// don't touch them in normal-mode, since it would affect Listr's dnyamic rendering
if (typeof logLevel === 'string') {
console.log = require('debug')('thumbsup:info')
console.info = require('debug')('thumbsup:info')
console.warn = require('debug')('thumbsup:warn')
console.error = require('debug')('thumbsup:error')
}
}