From f6236ad1cd3e5b6d47cb6c4d5784591092a7f351 Mon Sep 17 00:00:00 2001 From: "Hung-Han (Henry) Chen" Date: Thu, 2 Sep 2021 11:10:38 +0300 Subject: [PATCH] Remove console.log Signed-off-by: Hung-Han (Henry) Chen --- src/common/ipc/ipc.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/ipc/ipc.ts b/src/common/ipc/ipc.ts index 9ef9a9a367..a28866f1d7 100644 --- a/src/common/ipc/ipc.ts +++ b/src/common/ipc/ipc.ts @@ -78,7 +78,6 @@ export function broadcastMessage(channel: string, ...args: any[]) { logger.silly(`[IPC]: broadcasting "${channel}" to ${viewType}=${view.id}`, { args }); view.send(channel, ...args); } catch (error) { - console.log(view); logger.error(`[IPC]: failed to send IPC message "${channel}" to view "${viewType}=${view.id}"`, { error: String(error) }); }