I am using the latest Xcode, and have placed NSAssert()
calls inside of my code. When one of the assertions fails, execution halts, and the console log states that an assertion error has occured, but the message in the NSAssert()
call does not show up in the console log. For instance:
NSAssert( 1 != 1, @"Foo bar." );
Will not cause the message "Foo bar." to show up in the console log. It is my understanding that it should. Any ideas what might be going on?