Skip to content

Commit 3bbfbcc

Browse files
authored
Do not log using raw print in SettingsCacheClient (#15132)
1 parent e0c6d91 commit 3bbfbcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FirebaseSessions/Sources/Settings/SettingsCacheClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ final class SettingsCache: SettingsCacheClient {
129129
guard let duration = cacheContent[Self.flagCacheDuration] as? Double else {
130130
return Self.cacheDurationSecondsDefault
131131
}
132-
print("Duration: \(duration)")
132+
Logger.logDebug("[Settings] Cache duration: \(duration)")
133133
return duration
134134
}
135135
}

0 commit comments

Comments
 (0)