Module crash_handler

Module crash_handler 

Source
Expand description

Contains a default crash handler that is attached by default to the ObsContext. By default this will handle crashes just by printing them out to console, if the dialog-crash-handler feature is disabled. If you want to implement your own crash handler, make sure that you do the least amount of work possible and access as few global variables as you can, as it is quite unstable if libobs has crashed.

Modules§

dialog

Structs§

ConsoleCrashHandler

Traits§

ObsCrashHandler
Trait for handling OBS crashes. This is called whenever OBS encounters a fatal error and crashes. Implementors can define custom behavior for crash handling, such as logging the error, showing a dialog, or sending reports.