Skip to main content

CrashUtils

The CrashUtils extension gives you access to crash logs from previous terminations of your application.

Features

  • 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

Documentation

The documentation site forms the best source of detailed documentation for the extension along with the asdocs.

Quick Example:

AIR
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 );
}