Browse Source

PR feedback: make debugPrint clearer

polscm32 1 năm trước cách đây
mục cha
commit
5dd72878d8
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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
             }
         }