I’m trying to debug RestKit object mapping and noticed that there are calls to RKLogDebug throughout the code, but it appears that that macro is undefined somewhere. How can I enable it?
I’m trying to debug RestKit object mapping and noticed that there are calls to
Share
You want to add something like this:
to your code. See RKLog.h for the various levels. It is pretty trick.
N.B. this supports a wildcard at the end so, e.g.,
– Thanks Kevin!
For Swift user use this syntex:
– Thanks Darshit!