Refine some templates handling log messages
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 23 Dec 2022 21:07:23 +0000 (22:07 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 23 Dec 2022 21:07:23 +0000 (22:07 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/ChargingStation.ts

index 01e340606e0f6f218fe74dabbffe54055e48a82b..20122c400d98d13857b368b974caa3ccf1c0c123 100644 (file)
@@ -796,7 +796,7 @@ export default class ChargingStation {
   private getStationInfoFromTemplate(): ChargingStationInfo {
     const stationTemplate: ChargingStationTemplate = this.getTemplateFromFile();
     if (Utils.isNullOrUndefined(stationTemplate)) {
-      const errorMsg = 'Failed to read charging station template file';
+      const errorMsg = `Failed to read charging station template file ${this.templateFile}`;
       logger.error(`${this.logPrefix()} ${errorMsg}`);
       throw new BaseError(errorMsg);
     }
@@ -828,7 +828,9 @@ export default class ChargingStation {
       logger.warn(
         `${this.logPrefix()} Firmware version '${
           stationTemplate.firmwareVersion
-        }' does not match regular expression '${firmwareVersionRegExp.toString()}'`
+        }' in template file ${
+          this.templateFile
+        } does not match regular expression '${firmwareVersionRegExp.toString()}'`
       );
     }
     const stationInfo: ChargingStationInfo =