From d0de862af1da22a03fbc3c5b9c7bdef262c111fe Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Tue, 3 Aug 2021 20:46:36 +0200 Subject: [PATCH] remove debug output in webSocketClient.ts Signed-off-by: Stefan Dej --- src/plugins/webSocketClient.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/plugins/webSocketClient.ts b/src/plugins/webSocketClient.ts index 38681af6..d36ccf4f 100644 --- a/src/plugins/webSocketClient.ts +++ b/src/plugins/webSocketClient.ts @@ -59,14 +59,6 @@ export class WebSocketClient { if (wait && wait.action !== ""){ if (data.error && data.error.message) { window.console.error("Response Error: "+wait.action+" > "+data.error.message) - if (wait.params) window.console.log(wait.params) - - /*this.store?.dispatch(wait.action, - Object.assign(wait.actionPreload || {}, { - error: data.error, - requestParams: wait.params - }) - )*/ } else if (wait.action) { let result = data.result if (result === "ok") result = { result: result }