Make some of the identifiers public to assist in debugging issues adding feeds #2443

This commit is contained in:
Kiel Gillard 🤪 2020-09-30 10:11:16 +10:00
parent 3c440791a1
commit 822879c18e
2 changed files with 7 additions and 7 deletions

View File

@ -32,7 +32,7 @@ final class FeedlyGetCollectionsOperation: FeedlyOperation, FeedlyCollectionProv
service.getCollections { result in service.getCollections { result in
switch result { switch result {
case .success(let collections): case .success(let collections):
os_log(.debug, log: self.log, "Received collections: %@.", collections.map { $0.id }) os_log(.debug, log: self.log, "Received collections: %{public}@", collections.map { $0.id })
self.collections = collections self.collections = collections
self.didFinish() self.didFinish()

View File

@ -51,13 +51,13 @@ final class FeedlySyncStreamContentsOperation: FeedlyOperation, FeedlyOperationD
} }
override func didCancel() { override func didCancel() {
os_log(.debug, log: log, "Canceling sync stream contents") os_log(.debug, log: log, "Canceling sync stream contents for %{public}@", resource.id)
operationQueue.cancelAllOperations() operationQueue.cancelAllOperations()
super.didCancel() super.didCancel()
} }
func enqueueOperations(for continuation: String?) { func enqueueOperations(for continuation: String?) {
os_log(.debug, log: log, "Requesting page for %@", resource.id) os_log(.debug, log: log, "Requesting page for %{public}@", resource.id)
let operations = pageOperations(for: continuation) let operations = pageOperations(for: continuation)
operationQueue.addOperations(operations) operationQueue.addOperations(operations)
} }
@ -91,14 +91,14 @@ final class FeedlySyncStreamContentsOperation: FeedlyOperation, FeedlyOperationD
func feedlyGetStreamContentsOperation(_ operation: FeedlyGetStreamContentsOperation, didGetContentsOf stream: FeedlyStream) { func feedlyGetStreamContentsOperation(_ operation: FeedlyGetStreamContentsOperation, didGetContentsOf stream: FeedlyStream) {
guard !isCanceled else { guard !isCanceled else {
os_log(.debug, log: log, "Cancelled requesting page for %@", resource.id) os_log(.debug, log: log, "Cancelled requesting page for %{public}@", resource.id)
return return
} }
os_log(.debug, log: log, "Ingesting %i items from %@", stream.items.count, stream.id) os_log(.debug, log: log, "Ingesting %i items from %{public}@", stream.items.count, stream.id)
guard isPagingEnabled, let continuation = stream.continuation else { guard isPagingEnabled, let continuation = stream.continuation else {
os_log(.debug, log: log, "Reached end of stream for %@", stream.id) os_log(.debug, log: log, "Reached end of stream for %{public}@", stream.id)
return return
} }
@ -106,7 +106,7 @@ final class FeedlySyncStreamContentsOperation: FeedlyOperation, FeedlyOperationD
} }
func feedlyCheckpointOperationDidReachCheckpoint(_ operation: FeedlyCheckpointOperation) { func feedlyCheckpointOperationDidReachCheckpoint(_ operation: FeedlyCheckpointOperation) {
os_log(.debug, log: log, "Completed ingesting items from %@", resource.id) os_log(.debug, log: log, "Completed ingesting items from %{public}@", resource.id)
didFinish() didFinish()
} }