This commit is contained in:
Mr. Stallion 2020-06-28 17:15:43 -05:00
parent 4ace1d4b32
commit 643a0340a8
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ contextBridge.exposeInMainWorld(
const cleanedArgs = args.map(v => cleanValue(v));
const cleanedChannel = cleanValue(channel);
console.log('REAL.IPC', cleanedChannel, cleanedArgs);
// console.log('REAL.IPC', cleanedChannel, cleanedArgs);
ipcRenderer.sendToHost(cleanedChannel, ...cleanedArgs);
}