I can't open devtools in the built version of my electron app. Therefore i want to find another solution to log any errors that only occur in the production version.
Is there any good way to get some console.logs from an electron application if its already built? Obviously i can debug the “development” version (running npm run dev) of my electron app by opening the chrome dev tools. But i can’t find any way to enable them inside my production application. I am using the newsest version of electron-vue
Thanks for any help in advance.
Here's what worked for me on Mac.
lldb path/to/build.app
run --remote-debugging-port=8315
. It should open a window of your app.http://localhost:8315/
Webpack App
.