Fix build due to winston types definition fix
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 6 Feb 2022 10:15:39 +0000 (11:15 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 6 Feb 2022 10:15:39 +0000 (11:15 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/types/ConfigurationData.ts
src/utils/Configuration.ts

index 56ee0354510cca07327b6a6ce48973f1a8ab9dcd..fdb83b57486d3b9a1017e254ed874533ee406e25 100644 (file)
@@ -41,7 +41,7 @@ export default interface ConfigurationData {
   chargingStationsPerWorker?: number;
   logStatisticsInterval?: number;
   logFormat?: string;
-  logLevel?: level;
+  logLevel?: string;
   logRotate?: boolean;
   logMaxFiles?: number;
   logFile?: string;
index b1bc6e3adbe4a6662a37a902fb30ba4ca31af656..ab0a147300d2b29d8f13028d3a452d3ab8278f85 100644 (file)
@@ -137,8 +137,8 @@ export default class Configuration {
     return Configuration.objectHasOwnProperty(Configuration.getConfig(), 'logMaxFiles') ? Configuration.getConfig().logMaxFiles : 7;
   }
 
-  static getLogLevel(): level {
-    return Configuration.objectHasOwnProperty(Configuration.getConfig(), 'logLevel') ? Configuration.getConfig().logLevel.toLowerCase() as level : 'info';
+  static getLogLevel(): string {
+    return Configuration.objectHasOwnProperty(Configuration.getConfig(), 'logLevel') ? Configuration.getConfig().logLevel.toLowerCase() : 'info';
   }
 
   static getLogFile(): string {