Debugging

    • You can control the log level by using the flag when launching your application
    • The Developer tools will be accessible in your app via the right click menu (Linux & Mac)

    On Windows, the Webview component doesn’t have developer tools natively. To mitigate this (at least to some degree), a very basic console can be invoked by pressing . It allows you to enter javascript commands and does a certain degree of evaluation. The console is considered alpha quality, so if you would like to improve it, please feel free to create a PR.

    It’s possible to debug in Visual Studio by doing the following:

    • Open Debug -> Attach to Process…;

    • Click Select… and choose Debug there code types: -> Script

    • Click Attach. The DOM Explorer and JavaSript Console should now show up. If not, open them in Debug -> Windows.

    Many thanks to our friends over at for this information!