Turn off debug logging in Downloader.

This commit is contained in:
Brent Simmons
2025-05-07 20:21:44 -07:00
parent bd35c85fcf
commit 5c379a8d3a

View File

@@ -25,7 +25,7 @@ public typealias DownloadCallback = @MainActor (Data?, URLResponse?, Error?) ->
private let cache = Cache<DownloaderRecord>(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