The title says it all really! I'd like to pump out the raw-ish HTTP requests/responses to the console to aid debugging.

I've looked at the various docs on GitHub and had a quick search through the code and couldn't find anything obvious, so I'm guessing the answer is no. But just wanted to check if I have missed anything obvious.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

AFURLConnectionOperation sends notifications when operations start and end. You can easily log requests by listening for those notifications and logging the notification object:

[[NSNotificationCenter defaultCenter] addObserverForName:AFNetworkingOperationDidStartNotification object:nil queue:nil usingBlock:^(NSNotification *note) { NSLog(@"Operation Started: %@", [note object]); }];

Combine with FormatterKit's TTTURLRequestFormatter for best results!

link|improve this answer
Ah! I never thought of looking for NSNotification's. Thanks @mattt and thanks for the framework :-) – Damien Jan 23 at 20:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.