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 96f5363 commit 64f9a0eCopy full SHA for 64f9a0e
ios/amfi/amfi.go
@@ -61,8 +61,8 @@ func (devModeConn *Connection) EnableDevMode() error {
61
}
62
63
// Check if we have an error returned by the service
64
- if _, ok := plist["Error"]; ok {
65
- return fmt.Errorf("EnableDevMode: could not enable developer mode through amfi service")
+ if errorMsg, ok := plist["Error"]; ok {
+ return fmt.Errorf("EnableDevMode: could not enable developer mode through amfi service with error: %s", errorMsg)
66
67
68
if _, ok := plist["success"]; ok {
0 commit comments