Explorar o código

PR feedback: make debugPrint clearer

polscm32 hai 1 ano
pai
achega
5dd72878d8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Trio/Sources/APS/APSManager.swift

+ 1 - 1
Trio/Sources/APS/APSManager.swift

@@ -232,7 +232,7 @@ final class BaseAPSManager: APSManager, Injectable {
         // Check if too soon for next loop
         if lastLoopDate > lastLoopStartDate {
             guard lastLoopStartDate.addingTimeInterval(Config.loopInterval) < Date() else {
-                debug(.apsManager, "too close to do a loop : \(lastLoopStartDate)")
+                debug(.apsManager, "Not enough time have passed since last loop at : \(lastLoopStartDate)")
                 return false
             }
         }