Fix Logger typo

This commit is contained in:
Pete Walters 2026-02-19 09:04:40 -06:00 committed by GitHub
parent 52c80bbd5a
commit 8263a5ad34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -373,7 +373,7 @@ class BackupListMediaManagerImpl: BackupListMediaManager {
.compactMap { try? Attachment(record: $0) }
}
let lastAttachmentId = attachments.last?.id
Logger.info("Checking attachments [\(startAttachmentId.map(String.init) ?? "")...\(lastAttachmentId.map(String.init) ?? "")]")
logger.info("Checking attachments [\(startAttachmentId.map(String.init) ?? "")...\(lastAttachmentId.map(String.init) ?? "")]")
for attachment in attachments {
guard let fullsizeMediaName = attachment.mediaName else {