We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38161fe commit f3d4431Copy full SHA for f3d4431
Sources/ParseCareKit/ParseRemote.swift
@@ -532,6 +532,11 @@ public class ParseRemote: OCKRemoteSynchronizable {
532
guard shouldIncrementCloudClock || (!shouldIncrementCloudClock && cloudVector.uuids.count != localClock.uuids.count) else {
533
await self.remoteStatus.setNotSynchronzing()
534
// Clocks not updated, no need to update cloud.
535
+ if #available(iOS 14.0, watchOS 7.0, *) {
536
+ Logger.pushRevisions.debug("Finished pushing revisions")
537
+ } else {
538
+ os_log("Finished pushing revisions", log: .pushRevisions, type: .debug)
539
+ }
540
DispatchQueue.main.async {
541
self.parseRemoteDelegate?.successfullyPushedDataToCloud()
542
}
0 commit comments