I'd like to be able to put trace messages of the current class name and method name for all classes in my project.
Is there a way to get the current method's name at run time, similar to:
NSLog(@"classname: %@", [self className]);
where self is a class derived out of NSObject?