Thellimist
Thellimist

Reputation: 4027

iOS how to understand symbolicated errors

I'm using swift to code. I have symbolicated errors but I still can't understand exactly what the error means. I can see these informations

Does it contain any other information like

or more?

objc_retain @ 0xa
-[PFDecoder decodeDictionary:] @ 0x3d, PFDecoder.m : 86
-[PFDecoder decodeObject:] @ 0x13, PFDecoder.m : 112
#ERROR!
#ERROR!
#ERROR!
_TFV4Cozy11CozyConfigs14checkAnalyticsfMS0_FT_T_ @ 0xa2
_TFC4Cozy11AppDelegate11applicationfS0_FTCSo13UIApplication29didFinishLaunchingWithOptionsGSqGVSs10DictionaryCSo8NSObjectPSs9AnyObject____Sb @ 0x18a
_TToFC4Cozy11AppDelegate11applicationfS0_FTCSo13UIApplication29didFinishLaunchingWithOptionsGSqGVSs10DictionaryCSo8NSObjectPSs9AnyObject____Sb @ 0x10a
-[NSObject(TLDelegateSW) tlsw_application:didFinishLaunchingWithOptions:] @ 0x45
-[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] @ 0x117
-[UIApplication _callInitializationDelegatesForMainScene:transitionContext:] @ 0x933
-[UIApplication _runWithMainScene:transitionContext:completion:] @ 0x557
__84-[UIApplication _handleApplicationActivationWithScene:transitionContext:completion:]_block_invoke @ 0x23
-[UIApplication workspaceDidEndTransaction:] @ 0x81
__31-[FBSSerialQueue performAsync:]_block_invoke @ 0xb
__CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ @ 0xb
__CFRunLoopDoBlocks @ 0xd7
__CFRunLoopRun @ 0x2f5
CFRunLoopRunSpecific @ 0x1db
CFRunLoopRunInMode @ 0x69
-[UIApplication _run] @ 0x22d
UIApplicationMain @ 0x59f
main @ 0x86
start @ 0x1

This is another crash log which is shorter.(maybe it'll be easier to explain)

_TFFV4Cozy10CardLoader10initializeFMS0_FT4viewGSqCSo6UIView_14tutorialActiveSb_T_U0_FTGSQPSs9AnyObject__GSQCSo7NSError__T_ @ 0x2720
_TFFV4Cozy10CardLoader10initializeFMS0_FT4viewGSqCSo6UIView_14tutorialActiveSb_T_U0_FTGSQPSs9AnyObject__GSQCSo7NSError__T_ @ 0xe44
__72-[BFTask(Private) continueWithMainThreadResultBlock:executeIfCancelled:]_block_invoke @ 0x50, BFTask+Private.m : 52
__41-[BFTask continueWithExecutor:withBlock:]_block_invoke_2 @ 0x8, BFTask.m : 287
@ 0x13a8
@ 0x1368
@ 0x597c
__CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ @ 0x8
__CFRunLoopRun @ 0x5d0
CFRunLoopRunSpecific @ 0x188
@ 0xb5a0
UIApplicationMain @ 0x5cc
main @ 0x70
@ 0x2a04

Upvotes: 0

Views: 306

Answers (1)

kkarayannis
kkarayannis

Reputation: 198

The first one seems like it crashes in the checkAnalytics method of your CozyConfigs class

Upvotes: 1

Related Questions