diff --git a/FirebaseSessions/Sources/Settings/SettingsCacheClient.swift b/FirebaseSessions/Sources/Settings/SettingsCacheClient.swift index 18f9bcefbff..79a2e1ffa20 100644 --- a/FirebaseSessions/Sources/Settings/SettingsCacheClient.swift +++ b/FirebaseSessions/Sources/Settings/SettingsCacheClient.swift @@ -129,7 +129,7 @@ final class SettingsCache: SettingsCacheClient { guard let duration = cacheContent[Self.flagCacheDuration] as? Double else { return Self.cacheDurationSecondsDefault } - print("Duration: \(duration)") + Logger.logDebug("[Settings] Cache duration: \(duration)") return duration } }