Currently, we are defining ourselves an extended log mechanism to print out the class name and the source line number of the log.

#define NCLog(s, ...) NSLog(@"<%@:%d> %@", [[NSString stringWithUTF8String:__FILE__] lastPathComponent], \
    __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__])

For example, when I call NCLog(@"Hello world"); The output will be:

<ApplicationDelegate:10>Hello world

Now I also want to log out the method name like:

<ApplicationDelegate:applicationDidFinishLaunching:10>Hello world

So, this would make our debugging become easier when we can know which method is getting called. I know that we also have XCode debugger but sometimes, I also want to do debugging by logging out.

link|improve this question

In my last iPhone project, I actually did this manually. Would love to see the answer to this. – Jacob Relkin May 5 '10 at 2:46
feedback

2 Answers

up vote 24 down vote accepted
NSLog( @"%s" , _cmd );

_cmd is the SEL in any Objective-C method.

link|improve this answer
That's it? Wow. – Jacob Relkin May 5 '10 at 2:49
Really thanks for it:) – vodkhang May 5 '10 at 2:54
16  
You really should use NSLog(@"%@", NSStringFromSelector(_cmd)), if you're going to use _cmd, since AFAIK Apple declares _cmd as type SEL, not a C-string. Just because it happens to be implemented as a C-string (as of the current versions of Mac OS X and the iPhone OS) doesn't mean you should use it in that way, since Apple could change it in an OS update. – Nick Forge May 5 '10 at 8:06
3  
Yes, NSStringFromSelector is the more correct answer. I never use _cmd as c string for anything but debug code. – drawnonward May 6 '10 at 0:17
feedback

To technically answer your question, you want:

NSLog(@"<%@:%@:%d>", NSStringFromClass([self class]), NSStringFromSelector(_cmd), __LINE__);

Or you could also do:

NSLog(@"%s", __PRETTY_FUNCTION__);
link|improve this answer
2  
With __FUNCTION__ and its pretty equivalent also being available in C-functions. – Georg Fritzsche May 5 '10 at 3:21
Thanks, it looks better and nicer than my current version – vodkhang May 5 '10 at 3:36
__PRETTY_FUNCTION__ is the best option IMO. It's a totally readable representation of the current method or function. – Chuck Oct 27 '10 at 5:01
feedback

Your Answer

 
or
required, but never shown

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