We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20ad9ae commit db5c4afCopy full SHA for db5c4af
Sources/LogView.swift
@@ -84,10 +84,11 @@ struct LogView: View {
84
let result = idevicebackup2_main(Int32(restoreArgs.count), &argv)
85
print("idevicebackup2 exited with code \(result)")
86
87
+ log.append("\n")
88
if log.contains("Domain name cannot contain a slash") {
- print("ERROR: this iOS version is not supported.")
89
+ log.append("Result: this iOS version is not supported.")
90
} else if log.contains("crash_on_purpose") {
- print("Restore succeeded")
91
+ log.append("Result: restore successful.")
92
if willReboot && result == 0 {
93
isRebooting.toggle()
94
MobileDevice.rebootDevice(udid: udid)
0 commit comments