Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|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

3 Answers

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

_cmd is the SEL in any Objective-C method.

share|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
59  
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
Wow, the compiler complaints about pointer incompatibility, but it works... So _cmd (type: SEL) really is a char* !? – NicolasMiari Jun 19 '12 at 9:46
show 1 more comment

To technically answer your question, you want:

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

Or you could also do:

NSLog(@"%s", __PRETTY_FUNCTION__);
share|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
6  
__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
PRETTY_FUNCTION looks amazing ;) – Igor Khomenko Mar 3 at 12:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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