Skip to content

Commit

Permalink
Merge pull request #167 from arduino/maintenance/silence-verbose-output
Browse files Browse the repository at this point in the history
Silence console output of serial handler
  • Loading branch information
sebromero authored Dec 18, 2024
2 parents 8268359 + 9f77078 commit 187424b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/ipc.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ module.exports = function registerIPCHandlers(win, ipcMain, app, dialog) {
})

ipcMain.handle('serial', (event, command, ...args) => {
console.debug('Handling IPC serial command:', command, ...args)
// console.debug('Handling IPC serial command:', command, ...args)
return serial[command](...args)
})
}

0 comments on commit 187424b

Please sign in to comment.