refactor!: LOG_LEVEL => IMMICH_LOG_LEVEL (#9557)

refactor: LOG_LEVEL => IMMICH_LOG_LEVEL
This commit is contained in:
Jason Rasmussen
2024-05-17 11:44:22 -04:00
committed by GitHub
parent 101bc290f9
commit 4807fc40a6
6 changed files with 9 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ if (process.argv[2] === immichApp) {
}
async function bootstrapImmichAdmin() {
process.env.LOG_LEVEL = LogLevel.WARN;
process.env.IMMICH_LOG_LEVEL = LogLevel.WARN;
await CommandFactory.run(ImmichAdminModule);
}