Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I see the communication of the RestKit network (JSON string)?

Tags:

restkit

I wish to see the JSON input/output of the iPhone. How can I do that?

Do I need to set use NSLog() (and where)? Or, set the RestKit logging level (to what)?

like image 727
Tomer Even Avatar asked Oct 05 '11 16:10

Tomer Even


2 Answers

Try placing this RKLogConfigureByName("RestKit/Network", RKLogLevelTrace); in your AppDelegate

like image 53
mja Avatar answered Nov 05 '22 13:11

mja


You can use Charles - Debugging Proxy

like image 39
Luda Avatar answered Nov 05 '22 13:11

Luda