Cleanup macos launcher download spam

This commit is contained in:
Ryan Huffman 2019-08-19 09:58:22 -07:00
parent 8642f2aaf8
commit 5ae6a323ac

View file

@ -21,7 +21,10 @@
-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite {
CGFloat prog = (float)totalBytesWritten/totalBytesExpectedToWrite;
NSLog(@"interface downloaded %d%%", (int)(100.0*prog));
if ((int)(100.0 * prog) != (int)self.progressPercentage) {
NSLog(@"interface downloaded %d%%", (int)(100.0*prog));
}
self.progressPercentage = (100.0 * prog);
[[Launcher sharedLauncher] updateProgressIndicator];