diff --git a/AltStore/Managing Apps/AppManager.swift b/AltStore/Managing Apps/AppManager.swift index 0d386d8c..3dd1ef9f 100644 --- a/AltStore/Managing Apps/AppManager.swift +++ b/AltStore/Managing Apps/AppManager.swift @@ -2003,6 +2003,12 @@ private extension AppManager func log(_ error: Error, operation: LoggedError.Operation, app: AppProtocol) { + switch error + { + case ~OperationError.Code.cancelled: return // Don't log OperationError.cancelled + default: break + } + // Sanitize NSError on same thread before performing background task. let sanitizedError = (error as NSError).sanitizedForSerialization()