Exception Handling
PinLog also supports Uncaught Exception Handling.
That means whenever your app crashes, PinLog calls a method that creates a so called crash report and open email app with that crash report attached to it. You can provide the message
,emailAddresses
and the subject
for the Email to PinLog.
Warning : PinLog force closes the application after a crash to avoid ANRs (Application Not Responding) errors
Adding custom data to the crash report.
If you want to add custom data to the crash report you can add it like this from anywhere.
Creating a report without Exception Handler
To create a report use the below method.
This method creates a report that includes data from your
CustomData
, yourPinLogs
,applicationInfo
,BuildConfigClass
(if was provided while initialisation) and the application defaultPreferences
, .
Disabling PinLog Exception Handler
If you want to disable the PinLog exception handler after you have set it, you can call this method.
Last updated