• File: logger.js
  • Full Path: /var/www/nodejs/Notifications_Imali_API/node_modules/jake/lib/utils/logger.js
  • Date Modified: 01/17/2023 9:54 PM
  • File size: 505 bytes
  • MIME-type: text/plain
  • Charset: utf-8
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;