Jonas Björkert пре 1 година
родитељ
комит
6d51ab4947
1 измењених фајлова са 0 додато и 12 уклоњено
  1. 0 12
      Trio/Sources/Services/Network/Nightscout/NightscoutManager.swift

+ 0 - 12
Trio/Sources/Services/Network/Nightscout/NightscoutManager.swift

@@ -133,19 +133,7 @@ final class BaseNightscoutManager: NightscoutManager, Injectable {
         /// 2. To not spam the user's NS site with a high number of uploads in a very short amount of time (less than 1sec)
         coreDataPublisher?
             .filteredByEntityName("OrefDetermination")
-            .handleEvents(receiveOutput: { _ in
-                debug(
-                    .nightscout,
-                    "OrefDetermination update"
-                )
-            })
             .debounce(for: .seconds(2), scheduler: debouncedQueue)
-            .handleEvents(receiveOutput: { _ in
-                debug(
-                    .nightscout,
-                    "OrefDetermination update debounceed"
-                )
-            })
             .sink { [weak self] objectIDs in
                 guard let self = self else { return }