Implemented flexible logging solution utilizing the excellent LibComponentLogging library.

This commit is contained in:
Blake Watters
2011-06-10 09:22:23 -04:00
parent bc355d69fd
commit 9299cabc11
50 changed files with 3176 additions and 220 deletions

View File

@@ -8,19 +8,18 @@
#import "RKObjectLoaderTTModel+Loading.h"
@implementation RKObjectLoaderTTModel (Loading)
- (void)requestDidStartLoad:(RKRequest*)request {
NSLog(@"Request Start Load");
RKLogDebug(@"Request Start Load");
}
- (void)request:(RKRequest*)request didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite {
NSLog(@"Request Did Send Body Data");
RKLogDebug(@"Request Did Send Body Data");
}
- (void)request:(RKRequest*)request didLoadResponse:(RKResponse*)response {
NSLog(@"Request Did Load Response");
RKLogDebug(@"Request Did Load Response");
}
@end