save message working without reply
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
const DEBUG = (function() {
|
||||
const timestamp = function(){};
|
||||
timestamp.toString = () => "[DEBUG " + new Date().toLocaleDateString() + "]";
|
||||
return { log: console.log.bind(console, "%s", timestamp) };
|
||||
const DEBUG = (function () {
|
||||
const timestamp = function () {};
|
||||
timestamp.toString = () => "[" + new Date().toLocaleString() + "]";
|
||||
return { log: console.log.bind(console, "%s", timestamp) };
|
||||
})();
|
||||
|
||||
module.exports = {
|
||||
DEBUG
|
||||
}
|
||||
DEBUG,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user