Fix logging: Config options for debugging and profiling had no effect.

This commit is contained in:
baldo 2022-07-28 15:07:35 +02:00
commit 111fac6e47
3 changed files with 84 additions and 12 deletions

View file

@ -8,7 +8,7 @@ import * as app from "./app"
import * as mail from "./mail";
app.init();
Logger.init(config.server.logging.enabled);
Logger.init(config.server.logging);
Logger.tag('main', 'startup').info('Server starting up...');
async function main() {