Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Loop/Managers/LoopDataManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ final class LoopDataManager {
queue: nil
) { (note) -> Void in
self.dataAccessQueue.async {
self.logger.info("Received notification of carb entries updating")
self.logger.default("Received notification of carb entries updating")

self.carbEffect = nil
self.carbsOnBoard = nil
Expand All @@ -103,7 +103,7 @@ final class LoopDataManager {
queue: nil
) { (note) in
self.dataAccessQueue.async {
self.logger.info("Received notification of glucose samples changing")
self.logger.default("Received notification of glucose samples changing")

self.glucoseMomentumEffect = nil

Expand Down Expand Up @@ -571,6 +571,7 @@ extension LoopDataManager {
} else {
self.lastLoopCompleted = Date()
}
self.logger.default("Loop ended")
self.notify(forChange: .tempBasal)
}

Expand Down