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

log.js 184B

1234567
  1. function log(type, infos) {
  2. var msg = new Date().toISOString() + '\t' + type;
  3. if (infos) msg += '\t' + JSON.stringify(infos);
  4. console.log(msg);
  5. }
  6. module.exports.log = log;