Moved error logging to the browser console

This commit is contained in:
Geomitron
2021-02-06 22:03:22 -05:00
parent 293e395e61
commit 84e29e1b85
8 changed files with 28 additions and 11 deletions

View File

@@ -18,6 +18,7 @@ export class ElectronService {
constructor() {
if (this.isElectron) {
this.electron = window.require('electron')
this.receiveIPC('log', results => results.forEach(result => console.log(result)))
}
}