I developed React application and running in Electron as kiosk mode on Linux system. I'm using react-player component to run video (mp4) files in loop.It works just fine, but sometimes render process crashed and I'm seeing only white screen.
"render-process-gone" event only returns reason=crashed and exitCode=5.
I also try to start crashReporter, and on my development (Windows) machine is working (producing crash report file when calling process.crash()), but builded version blocking on crashReporter.start() and code is not runing after this.
This is the code I'm using:
crashReporter.start({ submitURL: '', uploadToServer: false,})
How can I get more detailed description why render process crashed?