From b23183197beb0c9bb13b85356d075571f4045478 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Mon, 19 May 2025 14:44:41 +0200 Subject: [PATCH] fix --- backend/src/typeorm/connection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/typeorm/connection.ts b/backend/src/typeorm/connection.ts index 16e5674ab..d56a95778 100644 --- a/backend/src/typeorm/connection.ts +++ b/backend/src/typeorm/connection.ts @@ -39,7 +39,7 @@ export class Connection { logging: true, logger: new FileLogger('all', { // workaround to let previous path working, because with esbuild the script root path has changed - logPath: CONFIG.PRODUCTION ? '../' : '' + CONFIG.TYPEORM_LOGGING_RELATIVE_PATH, + logPath: (CONFIG.PRODUCTION ? '../' : '') + CONFIG.TYPEORM_LOGGING_RELATIVE_PATH, }), extra: { charset: 'utf8mb4_unicode_ci',