Contents

processCrashReport(process:)

A method the system calls when a crash report is ready to be processed.

Declaration

func processCrashReport(process: CrashedProcess)

Parameters

  • process:

    Client for accessing crash data (corpse port, symbolication, etc.)

Discussion

Implement this method by inspecting the CrashedProcess object to prepare a crash report. You can then persist this report or send it back to your own server.

See Also

Processing a crash report