mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 15:49:31 +08:00
24 lines
505 B
Text
24 lines
505 B
Text
let util = require('util');
|
|
|
|
let logger = new (function () {
|
|
let _output = function (type, out) {
|
|
let quiet = typeof jake != 'undefined' && jake.program &&
|
|
jake.program.opts && jake.program.opts.quiet;
|
|
let msg;
|
|
if (!quiet) {
|
|
msg = typeof out == 'string' ? out : util.inspect(out);
|
|
console[type](msg);
|
|
}
|
|
};
|
|
|
|
this.log = function (out) {
|
|
_output('log', out);
|
|
};
|
|
|
|
this.error = function (out) {
|
|
_output('error', out);
|
|
};
|
|
|
|
})();
|
|
|
|
module.exports = logger;
|