Skip to content

Commit 9f77078

Browse files
committed
Silence console output of serial handler
1 parent 8d7586a commit 9f77078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: backend/ipc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ module.exports = function registerIPCHandlers(win, ipcMain, app, dialog) {
145145
})
146146

147147
ipcMain.handle('serial', (event, command, ...args) => {
148-
console.debug('Handling IPC serial command:', command, ...args)
148+
// console.debug('Handling IPC serial command:', command, ...args)
149149
return serial[command](...args)
150150
})
151151
}

0 commit comments

Comments
 (0)