See Logger project, I've crafted to answer these (and some other) questions.
Among its main features are:
1) NSLog'like logging, but with more informative output: current queue, current method, file and line.
Example: L(@"Your words") results in
[com.apple.main-thread] int main(int, char **) (main.m:7) Your words
2) Log strings for all basic NS objects be it objects or structs.
Examples: L1(@"I'am a string!") results in
[com.apple.main-thread] int main(int, char **) (main.m:12) (__NSCFConstantString) I'am a string!
L1((CGRect){0, 0, 200, 200}) results in
[com.apple.main-thread] int main(int, char **) (main.m:13) (CGRect){0.000000, 0.000000, 200.000000, 200.000000}
3) "Focused mode" logging: use LF() or L1F() at least once and all non-F Logger's methods will fall silent at once. Focused mode is useful when you want to debug some particular piece of code exclusively so other logs don't bother you.
See detailed description at Logger's README page.