mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-04-13 09:42:01 +00:00
21 lines
545 B
JavaScript
21 lines
545 B
JavaScript
// Generated by CoffeeScript 2.6.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);
|