Logging NSData Containing String in the Debugger

I'm trying to eliminate ever using log messages in my code for debugging. I'm sure a a lot of people already know this, but if you ever need to log an NSData you know contains a string in the debugger the command is:

po (char *)[data bytes]

Collin Donnell @collin