---
title: "processCrashReport(process:)"
framework: crashreportextension
role: symbol
role_heading: Instance Method
path: "crashreportextension/crashreporterextension/processcrashreport(process:)"
---

# processCrashReport(process:)

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

## Declaration

```swift
func processCrashReport(process: CrashedProcess)
```

## Parameters

- `process`: Client for accessing crash data (corpse port, symbolication, etc.)

## Discussion

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

- [CrashedProcess](crashreportextension/crashedprocess.md)
