Skip to content

vfleurima/AFHTTPRequestOperationLogger

 
 

Repository files navigation

AFHTTPRequestOperationLogger

AFHTTPRequestOperationLogger is an extension for AFNetworking that logs HTTP requests as they are sent and received.

This is still in early stages of development, so proceed with caution when using this in a production application. Any bug reports, feature requests, or general feedback at this point would be greatly appreciated.

Example Usage

Add the following code to AppDelegate.m -application:didFinishLaunchingWithOptions::

[[AFHTTPRequestOperationLogger sharedLogger] startLogging];

Now all AFHTTPRequestOperation will have their request and response logged to the console, a la:

GET http://example.com/foo/bar.json
200 http://example.com/foo/bar.json

If the default logging level is too verbose—say, if you only want to know when requests fail, then changing it is as simple as:

[[AFHTTPRequestOperationLogger sharedLogger] setLevel:AFLoggerLevelError];

Contact

Mattt Thompson

License

AFHTTPRequestOperationLogger is available under the MIT license. See the LICENSE file for more info.

About

AFNetworking Extension for HTTP Request Logging

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 92.3%
  • Ruby 7.7%