Browse Source

improve log

Yuki Takei 1 year ago
parent
commit
b45a3f0b6c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/app/src/server/service/config-manager/config-manager.ts

+ 1 - 1
apps/app/src/server/service/config-manager/config-manager.ts

@@ -113,7 +113,7 @@ export class ConfigManager implements IConfigManagerForApp, S2sMessageHandlable
     if (isDifferent) {
       if (!(value === undefined && valueByLegacy === null)) {
         logger.warn(
-          `The value of the config key '${key}' ${source != null ? `(source: ${source})` : ''} is different between the new and legacy config managers:`,
+          `The value of the config key '${key}'${source != null ? ` (source: ${source})` : ''} is different between the new and legacy config managers:`,
           { value, valueByLegacy },
         );
       }