diff --git a/apple/OmnivoreKit/Sources/Services/DataService/DataService.swift b/apple/OmnivoreKit/Sources/Services/DataService/DataService.swift index 65cea6f84..f878806bf 100644 --- a/apple/OmnivoreKit/Sources/Services/DataService/DataService.swift +++ b/apple/OmnivoreKit/Sources/Services/DataService/DataService.swift @@ -55,13 +55,6 @@ public final class DataService: ObservableObject { backgroundContext.automaticallyMergesChangesFromParent = true backgroundContext.mergePolicy = NSMergePolicy.mergeByPropertyObjectTrump -// NotificationCenter.default.addObserver( -// forName: Notification.Name.NSManagedObjectContextObjectsDidChange, -// object: backgroundContext, queue: OperationQueue.main -// ) { note in -// print("MERGE NOTIFICATION: ", note) -// } - if isFirstTimeRunningNewAppBuild() { resetLocalStorage() } else { diff --git a/apple/OmnivoreKit/Sources/Services/DataService/Mutations/DeleteHighlight.swift b/apple/OmnivoreKit/Sources/Services/DataService/Mutations/DeleteHighlight.swift index 212a55f00..c2644d4fc 100644 --- a/apple/OmnivoreKit/Sources/Services/DataService/Mutations/DeleteHighlight.swift +++ b/apple/OmnivoreKit/Sources/Services/DataService/Mutations/DeleteHighlight.swift @@ -53,7 +53,6 @@ public extension DataService { context.perform { guard let highlight = Highlight.lookup(byID: highlightID, inContext: context) else { return } - print("LOOKED UP HIGHLIGHT: ", highlight, highlight.serverSyncStatus, highlight.serverSyncStatus) if isSyncSuccess { highlight.remove(inContext: context)