From 1c29ab69bf0e461518025a749f41a648ca2233a7 Mon Sep 17 00:00:00 2001 From: eduardopietre Date: Wed, 12 Jan 2022 15:45:14 -0300 Subject: [PATCH] Fixes typos at TreatmentEntryAccessor logging. --- xdrip/Core Data/accessors/TreatmentEntryAccessor.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xdrip/Core Data/accessors/TreatmentEntryAccessor.swift b/xdrip/Core Data/accessors/TreatmentEntryAccessor.swift index 5cd4a2a7..0bdccd81 100644 --- a/xdrip/Core Data/accessors/TreatmentEntryAccessor.swift +++ b/xdrip/Core Data/accessors/TreatmentEntryAccessor.swift @@ -111,7 +111,7 @@ class TreatmentEntryAccessor { do { try managedObjectContext.save() } catch { - trace("in delete bgReading, Unable to Save Changes, error.localizedDescription = %{public}@", log: self.log, category: ConstantsLog.categoryApplicationDataTreatments, type: .error, error.localizedDescription) + trace("in delete treatmentEntry, Unable to Save Changes, error.localizedDescription = %{public}@", log: self.log, category: ConstantsLog.categoryApplicationDataTreatments, type: .error, error.localizedDescription) } } } @@ -147,7 +147,7 @@ class TreatmentEntryAccessor { treatments = try fetchRequest.execute() } catch { let fetchError = error as NSError - trace("in fetchTreatments, Unable to Execute BgReading Fetch Request : %{public}@", log: self.log, category: ConstantsLog.categoryApplicationDataTreatments, type: .error, fetchError.localizedDescription) + trace("in fetchTreatments, Unable to Execute fetchTreatments Fetch Request : %{public}@", log: self.log, category: ConstantsLog.categoryApplicationDataTreatments, type: .error, fetchError.localizedDescription) } }