Crash Reporting in Open RV
Overview
Open RV can automatically capture a crash report (a minidump) when the application crashes. A report records the state of the program at the moment of the crash — the call stack, loaded modules, GPU information, and which Mu/Python script was running — so the crash can be diagnosed and fixed without needing a reproduction.
Crash reporting is enabled by default. Reports are written to a local folder on your machine; nothing is sent anywhere automatically. You decide whether to share a report (for example, by attaching it to a bug report or support request).
Where crash reports are stored
When RV crashes, a .dmp file is written to a per-user location:
Platform |
Location |
|---|---|
macOS |
|
Linux |
|
Windows |
|
If log attachment is enabled (the default), the current session log is included with the report to help correlate the crash with recent activity.
Enabling and disabling crash reporting
Crash reporting is on by default. To disable it, set this environment
variable to 0 before launching RV:
RV_CRASH_DUMPS_ENABLED=0
Leaving it unset — or setting it to any value other than 0 — keeps crash
reporting enabled.