Do you have any unique or special uses of NSLog you use for debugging?
|
|
I like to use this format for debugging.
Of course, you'll want to wrap this in your own method or function for ease of use. I use the preprocessor and also only enable it for my own use and special builds I send out to beta testers. This is copied from my answer to this question, by the way.
This makes
|
|||
|
|
|
|
Here's one that lets you indent some portions of your debugging logs to make things more readable:
This can be used like so:
And will produce:
Hello, world
Step 1
Step 2
Step 2a
Step 2b
Step 3
Goodbye, cruel world!
|
||
|
|
|
|
This is not an NSLog feature, however it’s very handy for use with NSLog: you can use %@ placeholder for objects, and their descriptions will be displayed:
This way you can quikly see what object you get returned, for example. This works by sending “description” selector an object, which can be, of course, implemented in your own objects. |
|||
|
|
|
|
prints the current method signature or function name. |
||
|
|
|
|
I use some macros with NSLog to quickly debug the contents of cocoa's
These can be used as follows:
And they produce the following output:
|
||||||
|
|
|
NSLog is the objective C way of using printf (although printf works too), so its always useful to be able to see the contents of variables. The fact that it also prints out a time stamp before the output can be an easy way to see exactly how long the program is spending doing each specific task. |
||||
|
