@@ -337,7 +337,6 @@ class LowLevelSocketService {
337
337
socket . on ( 'disconnect' , ( ) => delete this . openConnections [ origin ] ) ;
338
338
339
339
socket . on ( 'message' , msg => {
340
- console . log ( 'message' , msg ) ;
341
340
if ( msg . indexOf ( '42/scatter' ) === - 1 ) return false ;
342
341
const [ type , request ] = JSON . parse ( msg . replace ( '42/scatter,' , '' ) ) ;
343
342
@@ -488,3 +487,28 @@ ipcMain.on('seed', (event, arg) => {
488
487
event . sender . send ( 'seed' , seed ) ;
489
488
} ) ;
490
489
490
+
491
+
492
+
493
+
494
+ // -------------------------------------------------------------
495
+ // CATCH ALL EXCEPTIONS AND CONSOLES
496
+ // We're throwing all exceptions and console up to the renderer console so they can be visible in running builds.
497
+ // -------------------------------------------------------------
498
+ process . on ( 'uncaughtException' , ( err ) => {
499
+ mainWindow . webContents . send ( 'error' , { message :err . message , file :err . fileName , line :err . lineNumber } ) ;
500
+ console . error ( 'There was an uncaught error' , err )
501
+ // process.exit(1) //mandatory (as per the Node docs)
502
+ } ) ;
503
+
504
+ const log = console . log ;
505
+ console . log = ( ...params ) => {
506
+ mainWindow . webContents . send ( 'console' , params ) ;
507
+ log ( ...params ) ;
508
+ }
509
+
510
+ const logerr = console . error ;
511
+ console . error = ( ...params ) => {
512
+ mainWindow . webContents . send ( 'console' , params ) ;
513
+ logerr ( ...params ) ;
514
+ }
0 commit comments