The CrashUtils extension gives you access to crash logs from previous terminations of your application.
- Improve app quality by processing your application crashes
- Single API interface - your code works across supported platforms with no modifications
- Sample project code and ASDocs reference
The documentation site forms the best source of detailed documentation for the extension along with the asdocs.
Quick Example:
var reasons:Array = CrashUtils.service.getHistoricalProcessExitReasons();
for each (var reason:ApplicationExitInfo in reasons)
{
trace( "Reason: " + reason.reason );
trace( "Description: " + reason.description );
trace( "Trace: " + reason.traceInputStream );
}