Respond to CR.
This commit is contained in:
parent
7bbad0d5a1
commit
45201d45ed
@ -68,7 +68,6 @@ typedef void (^DebugLogUploadFailure)(DebugLogUploader *uploader, NSError *error
|
||||
userInfo:@{ NSLocalizedDescriptionKey : @"Could not load data." }]];
|
||||
return;
|
||||
}
|
||||
// TODO:
|
||||
[request setHTTPBody:data];
|
||||
|
||||
NSURLConnection *connection = [NSURLConnection connectionWithRequest:request delegate:self];
|
||||
|
||||
@ -70,7 +70,7 @@ const NSUInteger kMaxDebugLogFileSize = 1024 * 1024 * 3;
|
||||
// 24 hour rolling.
|
||||
self.fileLogger.rollingFrequency = kDayInterval;
|
||||
// Keep last 3 days of logs - or last 3 logs (if logs rollover due to max file size).
|
||||
self.fileLogger.logFileManager.maximumNumberOfLogFiles = 24;
|
||||
self.fileLogger.logFileManager.maximumNumberOfLogFiles = 3;
|
||||
self.fileLogger.maximumFileSize = kMaxDebugLogFileSize;
|
||||
self.fileLogger.logFormatter = [OWSScrubbingLogFormatter new];
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user