1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove debug logging

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-07-07 15:55:14 -04:00
parent 3cb68323f3
commit 911e2d1bc4

View File

@ -24,11 +24,9 @@ const enlistMessageChannelListenerInjectable = getInjectable({
); );
}; };
console.debug(`[IPC]: listening on ${channel.id}`);
ipcRenderer.on(channel.id, nativeCallback); ipcRenderer.on(channel.id, nativeCallback);
return () => { return () => {
console.debug(`[IPC]: listenering off ${channel.id}`);
ipcRenderer.off(channel.id, nativeCallback); ipcRenderer.off(channel.id, nativeCallback);
}; };
}; };