Remove some debug lines

This commit is contained in:
Jackson Harper 2022-05-31 15:19:21 -07:00
parent 38fed646f5
commit 632d794af5
2 changed files with 0 additions and 2 deletions

View file

@ -37,7 +37,6 @@ public final class DataService: ObservableObject {
} else {
persistentContainer.loadPersistentStores { _, error in
if let error = error {
print("error", error)
fatalError("Core Data store failed to load with error: \(error)")
}
}

View file

@ -33,7 +33,6 @@ extension DataService {
let maxItemCount = 30
let fetchResult = try await fetchLinkedItemIDs(limit: 10, cursor: cursor)
let newItemsToFetch = await itemsNotInStore(from: fetchResult.itemIDs)
print("newItemsToFetch", newItemsToFetch)
let itemsToFetch = previouslyFetchedIDs + newItemsToFetch
if newItemsToFetch.isEmpty || itemsToFetch.count > maxItemCount || fetchResult.cursor == nil {