From 4c3ff3bba779ecb576f1d5fda5b86677c74e1a1a Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 2 Dec 2024 21:27:06 -0800 Subject: [PATCH] Remove unneeded log. Add log for dropping X/Twitter requests. --- .../Sources/Account/LocalAccount/LocalAccountRefresher.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Account/Sources/Account/LocalAccount/LocalAccountRefresher.swift b/Account/Sources/Account/LocalAccount/LocalAccountRefresher.swift index 952a6cb01..3e61bf7d0 100644 --- a/Account/Sources/Account/LocalAccount/LocalAccountRefresher.swift +++ b/Account/Sources/Account/LocalAccount/LocalAccountRefresher.swift @@ -90,7 +90,6 @@ extension LocalAccountRefresher: DownloadSessionDelegate { } if let error { - os_log(.debug, "Error downloading \(url) - \(error)") return } @@ -171,6 +170,7 @@ private extension LocalAccountRefresher { for badHost in badHosts { if lowercaseHost == badHost { + os_log(.debug, "Dropping request because it‘s X/Twitter, which doesn’t provide feeds: \(feed.url)") return true } }