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

Re-hide debug logs by default

This commit is contained in:
Dragory 2019-05-04 10:58:57 +03:00
parent 1e4d66a0a4
commit 8181df3140

View file

@ -184,6 +184,12 @@ connect().then(async conn => {
return yaml.safeLoad(yamlString);
},
logFn: (level, msg) => {
if (level === "debug") return;
// tslint:disable-next-line
console.log(`[${level.toUpperCase()}] ${msg}`);
},
performanceDebug: {
enabled: false,
size: 30,