1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00
Files
Boostnote/docs/debug.md
Markus Deuerlein 6bcb6398f8 German translation: minor corrections (#1585)
* minor corrections

some german improvements and corrections of the translation

* update link to docs/de/debug.md

* minor corrections

* minor corrections

* minor corrections

* minor corrections

* minor corrections
2018-02-26 21:08:03 +09:00

1.5 KiB

How to debug Boostnote (Electron app)

This page is also available in Japanese, Korean, Russain, Simplified Chinese, French and German.

Boostnote is an Electron app so it's based on Chromium; developers can use Developer Tools just like Google Chrome.

You can toggle the Developer Tools like this: how_to_toggle_devTools

The Developer Tools will look like this: Developer_Tools

When errors occur, the error messages are displayed at the console.

Debugging

For example, you can use the debugger to set a breakpoint in the code like this:

debugger

This is just an illustrative example, you should find a way to debug which fits your style.

References