Verified Commit 0fd43ef9 authored by Merzough Münker's avatar Merzough Münker
Browse files

fix: change log level

parent e03d8a2c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -374,7 +374,7 @@ export class ConfigService<Config extends Record<string, any> = Record<string, a
        if (defaultValue !== undefined) {
          return defaultValue;
        }
        console.warn(`Config with path '${ path }' not found`);
        console.debug(`Config with path '${ path }' not found`);
        return undefined as any;
      }
    }