Skip to content

Commit

Permalink
Comment out print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
AttilaTheFun committed Sep 21, 2019
1 parent 9eed351 commit 0cd2c17
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Source/Classes/Fetching/PageFetcher.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ extension PageFetcher {

private func restartFetch() {
// if let cursor = self.cursor {
// print("Beginning fetch for end: \(end) with cursor: \(cursor)")
// print("Beginning fetch for end: \(self.end) with cursor: \(cursor)")
// }

self.stateRelay.accept(.fetching)
Expand All @@ -86,6 +86,10 @@ extension PageFetcher {
return Edge(node: edge.node, cursor: edge.cursor)
}

// if let cursor = self.cursor {
// print("Fetched edges: \(edges) for end: \(self.end) with cursor: \(cursor)")
// }

let pageInfo = PageInfo(connectionPageInfo: connection.pageInfo)
self.stateRelay.accept(.complete(edges, pageInfo))
},
Expand Down

0 comments on commit 0cd2c17

Please sign in to comment.