Adjust logging for unexpected upload errors

This commit is contained in:
Sasha Weiss 2025-10-24 11:19:56 -07:00 committed by GitHub
parent 41c4527fe9
commit 63ab2863ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -624,7 +624,7 @@ class BackupAttachmentUploadQueueRunnerImpl: BackupAttachmentUploadQueueRunner {
default:
// For other errors stop the queue to prevent thundering herd;
// when it starts up again (e.g. on app launch) we will retry.
logger.error("Unknown error occurred; stopping the queue")
logger.error("Unknown error occurred; stopping the queue. \(error)")
try? await loader.stop()
return .retryableError(error)
}