Add logger to avoid crash

This commit is contained in:
Daniel Hougaard
2024-02-13 19:29:20 +01:00
parent fb9cdb591c
commit 178492e9bd

View File

@@ -14,7 +14,7 @@ export const DEFAULT_PROJECT_ENVS = [
];
export async function seed(knex: Knex): Promise<void> {
initEnvConfig();
initEnvConfig(await initLogger());
const appCfg = getConfig();
// Deletes ALL existing entries
await knex(TableName.Project).del();