X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-websocket-services%2FAbstractUIService.ts;h=42cfa428f1373cc36e1b67bca96661d1eebf6b19;hb=3e0905a14af7b7e0a96e859d6c4c615044845d54;hp=6755cd6e0fd3e1f8b2571cf43b7aad8f285304f7;hpb=a0239c1fdb0cebc4807aa2e381e7232cfe0e127c;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-websocket-services/AbstractUIService.ts b/src/charging-station/ui-websocket-services/AbstractUIService.ts index 6755cd6e..42cfa428 100644 --- a/src/charging-station/ui-websocket-services/AbstractUIService.ts +++ b/src/charging-station/ui-websocket-services/AbstractUIService.ts @@ -42,12 +42,10 @@ export default abstract class AbstractUIService { } protected buildProtocolMessage(command: ProtocolCommand, payload: JsonType): string { - console.log(JSON.stringify([command, payload])); // DEBUG return JSON.stringify([command, payload]); } private handleListChargingStations(): string[] { - // FIXED return Array.from(this.uiWebSocketServer.chargingStations); } }