We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf223de commit df26cc1Copy full SHA for df26cc1
QiniuSDK/Http/QNHttpManager.m
@@ -66,10 +66,12 @@ - (void) sendRequest:(NSMutableURLRequest *)request
66
if (info.isOK) {
67
resp = responseObject;
68
}
69
+ NSLog(@"success %@", info);
70
completeBlock(info, resp);
71
} failure: ^(AFHTTPRequestOperation *operation, NSError *error) {
72
double duration = [[NSDate date] timeIntervalSinceDate:startTime];
73
QNResponseInfo *info = [QNHttpManager buildResponseInfo:operation withError:error withDuration:duration withResponse:operation.responseData];
74
+ NSLog(@"failure %@", info);
75
completeBlock(info, nil);
76
77
0 commit comments