From c229d497655fcedec60409d993584f1d30d533cd Mon Sep 17 00:00:00 2001 From: theolivenbaum Date: Thu, 2 Sep 2021 16:45:20 +0200 Subject: [PATCH] remove debug message --- ElectronNET.Host/api/ipc.js | 1 - 1 file changed, 1 deletion(-) diff --git a/ElectronNET.Host/api/ipc.js b/ElectronNET.Host/api/ipc.js index ec17143..a8e10fe 100644 --- a/ElectronNET.Host/api/ipc.js +++ b/ElectronNET.Host/api/ipc.js @@ -40,7 +40,6 @@ module.exports = (socket) => { }); socket.on('sendToIpcRenderer', (browserWindowId, channel, ...data) => { const window = electron_1.BrowserWindow.fromId(browserWindowId); - console.log(data); if (window) { window.webContents.send(channel, ...data); }