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:
parent
1e4d66a0a4
commit
8181df3140
1 changed files with 6 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue