From: Jérôme Benoit Date: Thu, 27 Apr 2023 18:33:24 +0000 (+0200) Subject: fix: fix code block in else at evses init X-Git-Tag: v1.2.12~62 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=513db1083e1088486c64dfee6a1eac387b816c1b;p=e-mobility-charging-stations-simulator.git fix: fix code block in else at evses init Signed-off-by: Jérôme Benoit --- diff --git a/src/charging-station/ChargingStation.ts b/src/charging-station/ChargingStation.ts index 9d87153a..d830d747 100644 --- a/src/charging-station/ChargingStation.ts +++ b/src/charging-station/ChargingStation.ts @@ -1444,13 +1444,13 @@ export class ChargingStation { } with no evses configuration defined, cannot create evses` ); } - } else { - logger.warn( - `${this.logPrefix()} Charging station information from template ${ - this.templateFile - } with no evses configuration defined, using already defined evses` - ); } + } else { + logger.warn( + `${this.logPrefix()} Charging station information from template ${ + this.templateFile + } with no evses configuration defined, using already defined evses` + ); } }