I have a crash that doesn't give me much informati...
# kotlin-native
p
I have a crash that doesn't give me much information, how can I get better crash information than the following:
Copy code
Crashed: com.apple.root.utility-qos
SIGABRT ABORT 0x00000001bfed5414
0
libsystem_kernel.dylib
__pthread_kill + 8
1
libsystem_pthread.dylib
pthread_kill + 272
2
libsystem_c.dylib
abort + 104
3
GaiaProgress
ObjHeader::createMetaObject(TypeInfo**) + 4344939580
4
GaiaProgress
TerminateWithUnhandledException + 4344970116
5
GaiaProgress
KonanTerminateHandler() + 4344969660
6
libc++abi.dylib
std::__terminate(void (*)()) + 20
7
libc++abi.dylib
std::terminate() + 44
8
libobjc.A.dylib
_objc_terminate() + 14
9
libdispatch.dylib
_dispatch_client_callout + 40
10
libdispatch.dylib
_dispatch_root_queue_drain + 656
11
libdispatch.dylib
_dispatch_worker_thread2 + 116
12
libsystem_pthread.dylib
_pthread_wqthread + 216
13
libsystem_pthread.dylib
start_wqthread + 8
There you’ll have access to the Throwable before the app is killed, and you can log it
p
great, thanks!