Since recent update Xcode 4.3 now seems to default to LLDB debugger. I just found that my NSLog statements are not showing in the console. After searching the for answers, finding none, I switched back to GDB and it works fine.
I find others mention NSLog in LLDB so I don’t’ understand why it fails in my case. Should it not work the same? Is there a different method for LLDB?
Since recent update Xcode 4.3 now seems to default to LLDB debugger. I just
Share
Switching from LLDB back to GDB also worked for me.
For those who are not familiar with xcode, to change the runtime debugger back to GDB:
Cmd ⌘ + Option ⌥ + R to bring up the pane
Change the Debugger to ‘GDB’
This will have to do until the bug is fixed.