NewsBlur/node/log.js
2020-12-17 18:59:49 -05:00

21 lines
545 B
JavaScript

// Generated by CoffeeScript 2.5.1
(function() {
var debug, info;
info = function(username, message) {
var timestamp;
timestamp = new Date().toISOString().replace(/T/, ' ').replace(/\..+/, '');
return console.log(`[${timestamp}] ---> [${username}] ${message}`);
};
debug = function(message) {
var timestamp;
timestamp = new Date().toISOString().replace(/T/, ' ').replace(/\..+/, '');
return console.log(`[${timestamp}] ---> ${message}`);
};
exports.info = info;
exports.debug = debug;
}).call(this);