Quellcode durchsuchen

Remove temporary logging

Jonas Björkert vor 1 Jahr
Ursprung
Commit
6d51ab4947
1 geänderte Dateien mit 0 neuen und 12 gelöschten Zeilen
  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)
         /// 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?
         coreDataPublisher?
             .filteredByEntityName("OrefDetermination")
             .filteredByEntityName("OrefDetermination")
-            .handleEvents(receiveOutput: { _ in
-                debug(
-                    .nightscout,
-                    "OrefDetermination update"
-                )
-            })
             .debounce(for: .seconds(2), scheduler: debouncedQueue)
             .debounce(for: .seconds(2), scheduler: debouncedQueue)
-            .handleEvents(receiveOutput: { _ in
-                debug(
-                    .nightscout,
-                    "OrefDetermination update debounceed"
-                )
-            })
             .sink { [weak self] objectIDs in
             .sink { [weak self] objectIDs in
                 guard let self = self else { return }
                 guard let self = self else { return }