Collecting crash dumps

This guide describes how to collect crash dumps generated by JxBrowser.

When the native process crashes, JxBrowser generates and stores the crash dump files in the predefined directory. This directory will contain one or more *.dmp files. They are usually up to 5MB in size.

The default directory path is different for each platform:

  • Windows %localappdata%\JxBrowser\7.38.1\CrashReports
  • macOS $HOME/Library/Application Support/JxBrowser/7.38.1/CrashReports
  • Linux $HOME/.config/jxbrowser/7.38.1/crash-reports

You can change the default directory by using the jxbrowser.crash.dump.dir system property:

System.setProperty("jxbrowser.crash.dump.dir", "/Users/Me/.jxbrowser/7.38.1/CrashReports");
System.setProperty("jxbrowser.crash.dump.dir", "/Users/Me/.jxbrowser/7.38.1/CrashReports")
Go Top