forked from olcxjas-softworks/LarpixClient
Update gitignore (sorry)
This commit is contained in:
parent
a8f8c4d7ad
commit
cca8b02fea
6604 changed files with 1219661 additions and 4 deletions
24
electron/node_modules/jake/lib/utils/logger.js
generated
vendored
Normal file
24
electron/node_modules/jake/lib/utils/logger.js
generated
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue