Просмотр исходного кода

PR feedback: make debugPrint clearer

polscm32 1 год назад
Родитель
Сommit
5dd72878d8
1 измененных файлов с 1 добавлено и 1 удалено
  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
             }
         }