3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00

Remove timestamp from log fn in favor of pm2's timestamps

This commit is contained in:
Dragory 2019-05-04 10:52:38 +03:00
parent 7064199ccd
commit bb56f92c43

View file

@ -184,12 +184,6 @@ connect().then(async conn => {
return yaml.safeLoad(yamlString);
},
logFn: (level, msg) => {
if (level === "debug") return;
const ts = moment().format("YYYY-MM-DD HH:mm:ss");
console.log(`[${ts}] [${level.toUpperCase()}] ${msg}`);
},
performanceDebug: {
enabled: true,
size: 30,