From 63ab2863eef7d2cbf73efe810f139d998cc173d4 Mon Sep 17 00:00:00 2001 From: Sasha Weiss Date: Fri, 24 Oct 2025 11:19:56 -0700 Subject: [PATCH] Adjust logging for unexpected upload errors --- .../Backups/Attachments/BackupAttachmentUploadQueueRunner.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SignalServiceKit/Backups/Attachments/BackupAttachmentUploadQueueRunner.swift b/SignalServiceKit/Backups/Attachments/BackupAttachmentUploadQueueRunner.swift index c6220b630c..c29a45cb53 100644 --- a/SignalServiceKit/Backups/Attachments/BackupAttachmentUploadQueueRunner.swift +++ b/SignalServiceKit/Backups/Attachments/BackupAttachmentUploadQueueRunner.swift @@ -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) }