How to read iOS crash logs
Application crashes are normal and happen all the time. When a published app crashes on a user's iOS device, Apple sends a crash log to the developer. This means that the developer should to be able to read and analyse the log in order to fix the bug. However, sometimes you may want to read the crash log yourself or the developer may need some information from the log to locate it, for example the incident_id
.
How do I access the crash logs?
The logs can be accessed either from the iOS device itself or by syncing the data to PC or Mac with iTunes.
Accessing the crash logs on your iOS device
- Open the Settings app.
- Navigate to Privacy & Security > Analytics & Improvements > Analytics Data.
- Look for the crash log you want to view and tap it open.
- Tip: You can use the search function within the crash log view to find specific logs.
Accessing the crash logs using iTunes
- Connect your iOS device to your PC or Mac and sync it with iTunes
- Retrieve the crash logs
- macOS
- Open Finder.
- Select Go in the menu bar nad select Go to Folder....
- Paste the following path:
~/Library/Logs/CrashReporter/MobileDevice/
and click Go. - You’ll find all the crash logs synced from your device.
- Windows 10 / Windows 11 (Windows Store version)
- Open File Explorer.
- Type
%localappdata%
and hit Enter. - Navigate to
Packages/AppleInc.iTunes_nzyj5cx40ttqa/LocalCache/Roaming/Apple Computer/Logs/CrashReporter/MobileDevice
, and select your device. - You'll find all the crash logs synced from your device.
- Windows 10 / Windows 11
- Open File Explorer.
- Type
%appdata%
and hit Enter. - Navigate to
Apple computer/Logs/CrashReporter/MobileDevice
, and select your device. - You'll find all the crash logs synced from your device.
- macOS