Add a bunch more "logging" throughout signing

This commit is contained in:
Nythepegasus
2022-12-03 17:25:15 -05:00
committed by Joseph Mattello
parent 4a5ca81e9a
commit 4c441077c7
6 changed files with 25 additions and 3 deletions

View File

@@ -42,6 +42,7 @@ class SendAppOperation: ResultOperation<()>
let app = AnyApp(name: resignedApp.name, bundleIdentifier: self.context.bundleIdentifier, url: resignedApp.fileURL)
let fileURL = InstalledApp.refreshedIPAURL(for: app)
print("AFC App `fileURL`: \(fileURL.absoluteString)")
let ns_bundle = NSString(string: app.bundleIdentifier)
let ns_bundle_ptr = UnsafeMutablePointer<CChar>(mutating: ns_bundle.utf8String)
@@ -59,6 +60,7 @@ class SendAppOperation: ResultOperation<()>
attempts -= 1
}
if res == 0 {
print("minimuxer_yeet_app_afc `res` == \(res)")
self.progress.completedUnitCount += 1
self.finish(.success(()))
} else {