Set debugLoggingEnabled to false.

This commit is contained in:
Brent Simmons
2024-10-15 18:26:29 -07:00
parent b23f82e177
commit 8b230e48c0

View File

@@ -14,7 +14,7 @@ import Parser
public struct HTMLMetadataDownloader {
nonisolated(unsafe) private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "HTMLMetadataDownloader")
private static let debugLoggingEnabled = true
private static let debugLoggingEnabled = false
private static let cache = HTMLMetadataCache()
public static func downloadMetadata(for url: String) async -> HTMLMetadata? {