From 5c379a8d3a2f8ab6bcb231d55fa3074353c949c2 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Wed, 7 May 2025 20:21:44 -0700 Subject: [PATCH] Turn off debug logging in Downloader. --- Modules/RSWeb/Sources/RSWeb/Downloader.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/RSWeb/Sources/RSWeb/Downloader.swift b/Modules/RSWeb/Sources/RSWeb/Downloader.swift index ecdab5abc..2588eaa9f 100755 --- a/Modules/RSWeb/Sources/RSWeb/Downloader.swift +++ b/Modules/RSWeb/Sources/RSWeb/Downloader.swift @@ -25,7 +25,7 @@ public typealias DownloadCallback = @MainActor (Data?, URLResponse?, Error?) -> private let cache = Cache(timeToLive: 60 * 3, timeBetweenCleanups: 60 * 2) nonisolated private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "Downloader") - nonisolated private static let debugLoggingEnabled = true + nonisolated private static let debugLoggingEnabled = false private init() { let sessionConfiguration = URLSessionConfiguration.ephemeral