From: Jérôme Benoit Date: Mon, 29 Nov 2021 18:13:45 +0000 (+0100) Subject: Fixlet to a log message X-Git-Tag: v1.1.36~15 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=1a3d7d3d4f45282778f34d5c465f213e7f7ca0ad;p=e-mobility-charging-stations-simulator.git Fixlet to a log message Signed-off-by: Jérôme Benoit --- diff --git a/src/charging-station/WebSocketServices/ui/0.0.1/UIService.ts b/src/charging-station/WebSocketServices/ui/0.0.1/UIService.ts index fb2986a9..58d134fd 100644 --- a/src/charging-station/WebSocketServices/ui/0.0.1/UIService.ts +++ b/src/charging-station/WebSocketServices/ui/0.0.1/UIService.ts @@ -24,7 +24,7 @@ export default class UIService extends AbstractUIService { messageResponse = await this.messageHandlers.get(command)(payload); } catch (error) { // Log - logger.error(this.webSocketServer.logPrefix() + ' Handle request error: %j', error); + logger.error(this.webSocketServer.logPrefix() + ' Handle message error: %j', error); throw error; } } else {