remove debug output in webSocketClient.ts

Signed-off-by: Stefan Dej <meteyou@gmail.com>
This commit is contained in:
Stefan Dej 2021-08-03 20:46:36 +02:00
parent 74cb2384e1
commit d0de862af1

View File

@ -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 }