vote up 9 vote down star
17

I'm used to programming and having log messages be viewable. I know you used to be able to use NSLog() to trace out messages when debugging Cocoa apps. What is the best way to "trace" messages when coding in a iPhone XCode development environment?

flag

25% accept rate

4 Answers

vote up 11 vote down check

NSLog :)

The output is piped to the console window in XCode and the log files on the iPhone (which are viewable through the XCode device manager).

link|flag
Beautiful, thanks! – Rob Sawyer Feb 17 at 20:33
Just for reference, you can access the console by Run > Console, or Shift+Command+R – Jeff Winkworth Aug 15 at 17:53
upvote to give @cdespinosa the well earned populist badge. – Nikolai Ruhe Sep 22 at 8:52
vote up 0 vote down

I simply use the replace all functionality....

I disable all my NSLog statements by replacing NSLog(@" with //***NSLog(@"

That way I can simply find it (using find in all project files) with //***NSLog(@" and re-enable them

Nothing fancy but it works :)

link|flag
One minor tip for users looking for a Replace All button: There is no Replace All button in Find in Project window, that is because when none of the matches is selected, Replace button does a Replace All. – ustun Oct 14 at 18:46
vote up 53 vote down

There's a far more convenient way to trace with log messages in Xcode, and that's using Breakpoint Actions.

On the line of code where you'd be tempted to add a printf or NSLog, set a breakpoint, then control-click it and choose "Edit Breakpoint". In the blue bubble that appears, click the + button on the right to open the Breakpoint Actions: alt text

Enter your log text there. Any expression that can be printed in the Debugger can be used when delimited by @ signs.

For debugging Objective-C it's generally more useful to choose "Debugger Command" from the popup and enter 'po [[object method] method]' to print the description string of an Objective-C object or the result of a method call.

Make sure to click the "Continue" checkbox at the top right so execution continues after the log.

Advantages of this over NSLog and printf:

  • It's on the fly. You don't have to recompile and restart to add or edit log messages. This saves you a lot of time.
  • You can selectively enable and disable them. If you learn enough from one, but its spew is interfering, just uncheck its Enabled box.
  • All the output is generated on your Mac, never on the iPhone, so you don't have to download and parse through logs after the fact.
  • The chance of shipping console spew in your application is significantly decreased.

Also check out the Speak button; it's great for debugging full-screen apps where you can't see the debug log.

link|flag
2  
Give him a Populist for this one! – fbrereto Sep 3 at 23:35
2  
There's one more advantage which, in my opinion, is the best of all: When developing in a team (using SCM), I hate to have my console cluttered with debugging output of other developers. Using your method, debugging output is not committed to the source code or project and will only be seen on the local machine where it was created. – Nikolai Ruhe Sep 22 at 8:18
vote up 2 vote down

In my project I have a customised solution based on DebugOutput.m This adds the file & line number to the debug output, making it easier to identify where that output text is coming from, while still keeping it brief.

I've augmented the standard solution with a debug mask, so that I can switch debugging on and off for particular areas of functionality in my app. In Debug.h, I have

typedef enum {
kDebugMaskAp- = 1,
kDebugMaskXMLParser = 1 << 1,
kDebugMaskNetwork = 1 << 2,
kDebugMaskAnalytics = 1 << 3,
kDebugMaskCache = 1 << 4,
} debugBitMask;

#define debugForComponent(mask,format,...) if( currentDebugMask() & mask) [[DebugOutput sharedDebug]  output:__FILE__ lineNumber:__LINE__ input:(format), ##__VA_ARGS__]

And in Debug.m

-(void)output:(char*)fileName lineNumber:(int)lineNumber input:(NSString*)input, ...
{
  va_list argList;
  NSString *filePath, *formatStr;

  // Build the path string
  filePath = [[NSString alloc] initWithBytes:fileName length:strlen(fileName) encoding:NSUTF8StringEncoding];

  // Process arguments, resulting in a format string
  va_start(argList, input);
  formatStr = [[NSString alloc] initWithFormat:input arguments:argList];
  va_end(argList);

  // Call NSLog, prepending the filename and line number
  NSLog(@"File:%s Line:%d %@",[((DEBUG_SHOW_FULLPATH) ? filePath : [filePath lastPathComponent]) UTF8String], lineNumber, formatStr);

  [filePath release];
  [formatStr release];
}

In the application, calls look something like this:

debugForComponent(kDebugMaskApp,@"Request failed - error %@", [error localizedDescription]);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.