0

I have an issue. Xcode not showing issue when applicaiton crashed. Its just showing error on below.

libc++abi.dylib: terminating with uncaught exception of type NSException
rmaddy
  • 314,917
  • 42
  • 532
  • 579
Murat Kaya
  • 1,281
  • 3
  • 28
  • 52
  • Possible duplicate of [Hide strange unwanted Xcode 8 logs](http://stackoverflow.com/questions/37800790/hide-strange-unwanted-xcode-8-logs) – Dylan Dec 05 '16 at 17:23

1 Answers1

3

Okay I just solved the problem. To solve my problem, I changed the following value:

OS_ACTIVITY_MODE = disable

to

OS_ACTIVITY_MODE = enable

and it worked.

Dylan
  • 823
  • 2
  • 9
  • 33
Murat Kaya
  • 1,281
  • 3
  • 28
  • 52
  • 1
    Solved it for me as well! Thanks for the hint... It makes the debugger unreadable as it logs so much **** but at least now it shows me my crash-reasons again :) thx!!! – Georg Mar 17 '17 at 08:33