Questions tagged [crash-log]
119 questions
27
votes
6 answers
How to Manually Symbolicate iOS Crash to View Crash Logs
Trying to debug app. The trouble is I cannot find this program.
symbolicatecrash.sh
sudo cp /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Plug-ins/iPhoneRemoteDevice.xcodeplugin/Contents/Resources/symbolicatecrash…

butchcowboy
- 575
- 1
- 8
- 16
23
votes
2 answers
how to set location of jvm crash log files
I need to configure where the jvm crash logs are created. I like the name they have (hs_err_pid.log) but I want them created in an specific folder.
In here you can see that you can use the
-XX:ErrorFile=./hs_err_pid.log
param to set the FILE…

Persimmonium
- 15,593
- 11
- 47
- 78
20
votes
3 answers
How to decode a Crash log using dSYM file in iOS?
My iOS application crashed. I would like to read the crash log with the dSYM file. How is it possible?

MMMM
- 1,319
- 1
- 14
- 32
10
votes
1 answer
What does "Arg = Exploded" mean in Swift crash log?
I get a crash log from Crashlytics/Fabric which reads like the following:
function signature specialization of
MyClass.viewWillAppear (MyClass)(Swift.Bool) -> ()
what does exploded mean for Arg[0]?…

swalkner
- 16,679
- 31
- 123
- 210
9
votes
1 answer
LLDB How to load crashlog
I'm studying iOS crash analysis. Now, I need to import crashlog files into LLDB. As WWDC18 Session 414 said, I now have a copy of myApp, dSYM, xxx.crash. Run the following command in iTerm2.app:
$ lldb
(lldb) command script import…

Leo.J
- 317
- 1
- 3
- 10
9
votes
2 answers
How to get crash logs of Testflight external testers on Xcode or iTunes connect?
Is there any ways to know what's wrong with someone's app. It is working on everyone else's device but this person.
The person tried removing the previous version and installing the new one, but it still does not work. I suspect that one of the…

Myoch
- 793
- 1
- 6
- 24
9
votes
6 answers
___lldb_unnamed_function in a symbolicated crash log
I have a crash log produced on an iPhone OS 7.0.4. I have the appropriate .app and .dSYM files. When I symbolicate the crash log with Xcode 5, it shows me something like this:
Thread 0 Crashed:
0 MyProject 0x001df98a…

Vladimir Grigorov
- 10,903
- 8
- 60
- 70
8
votes
2 answers
Xcode isn't showing recent crash logs
On my phone I set Share With App Developers to On.
Settings > Privacy > Analytics > Share With App Developers > On
I printed a nil value to force a crash:
var x: String?
print(x!)
I saw the crash in the console but when I went to:
Window > Device…

Lance Samaria
- 17,576
- 18
- 108
- 256
8
votes
3 answers
How to fetch iOS crash logs programmatically?
I am looking to retrieve the crash logs in iPhone programmatically.
Under iOS 10 and above, the list of logs can be found here :
Settings --> Privacy -->Analytics --> Analytics Data-->logfiles.json
Is it possible to access the log files…

iCodes
- 1,382
- 3
- 21
- 47
7
votes
2 answers
I am learning iOS dev and have a crashing MapKit app. Need help understanding this crash log
I am working on and app called whereami from the "BNR Guide to iOS programming" chapter 5. I have the app working and left it on my phone to show the wife and family I am learning stuff. It is exhibiting a regular crashing behavior though. Here is…

vichudson1
- 881
- 1
- 10
- 21
7
votes
1 answer
How to read crash log? How to find why the app crashes in system library? What means EXC_CRASH (SIGABRT)?
I got an crash logs from a customer to figure why my app crash on her iPhone.
Here some info from crash log:
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x00000000, 0x00000000
Crashed Thread: 0
Stack trace for Thread 0
Thread 0…

Aleksejs Mjaliks
- 8,647
- 6
- 38
- 44
7
votes
2 answers
How to manually symbolicate a crash log with atos
After searching all over the internet to find a way to symbolicate my crash logs I received from Apple, I finally figured out how to use the atos command in terminal to symbolicate the crash logs. I have the dSYM file, the .app file and the crash…

Fitzy
- 1,871
- 6
- 23
- 40
6
votes
2 answers
What's going wrong in this crash log
So i have this crash log from my application. I don't have much experience in reading such logs :( Could someone please help me?
Thanks
CrashLog:
Process: SoundCloud Downloader [15495]
Path: /Applications/SoundCloud…

Silicone
- 643
- 6
- 19
6
votes
3 answers
How to recognize where the application crashes?
Incident Identifier: 48A73A33-A035-4B2D-8CBB-AD513D96A9B3
Hardware Model: iPod4,1
Process: Locally [599]
Path: /var/mobile/Applications/8EF9B7A1-234A-4C26-BDF0-D22D45D0F8E8/Locally.app/Locally
Identifier: …

Baby Groot
- 4,637
- 39
- 52
- 71
6
votes
1 answer
Device Crash Logs for Xamarin.iOS
I have a customer in a different location testing our software using "Ad-Hoc" deployments. His app is crashing and I can't reproduce it. He has given me the crash logs from XCode's Organizer, but I can't figuire out how to relate them to my…

Paul Knopf
- 9,568
- 23
- 77
- 142