We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0bec6e commit 37c09c1Copy full SHA for 37c09c1
FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift
@@ -67,10 +67,8 @@ final class HeartbeatStorage: HeartbeatStorageProtocol {
67
static func getInstance(id: String) -> HeartbeatStorage {
68
instancesLock.withLock {
69
if let cachedInstance = cachedInstances[id]?.object {
70
- print("fred")
71
return cachedInstance
72
} else {
73
- print("bob")
74
let newInstance = HeartbeatStorage.makeHeartbeatStorage(id: id)
75
cachedInstances[id] = WeakContainer(object: newInstance)
76
return newInstance
0 commit comments