summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2017-12-10 00:25:44 +0100
committerGravatar Nikias Bassen2017-12-10 00:25:44 +0100
commit858ae67dfd1fe448e8c6c6a31b509d6b1bca18c8 (patch)
treee432f89bcaaf37d4bf6d5566bee4d6bdd25cc00e
parent6074f76f7dd32d272b6de801f9638d8ebca1cbbf (diff)
downloadidevicerestore-858ae67dfd1fe448e8c6c6a31b509d6b1bca18c8.tar.gz
idevicerestore-858ae67dfd1fe448e8c6c6a31b509d6b1bca18c8.tar.bz2
restore: Only print info about other detected devices in debug mode
-rw-r--r--src/restore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/restore.c b/src/restore.c
index 4870bb5..7ea9035 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -341,7 +341,7 @@ static int restore_is_current_device(struct idevicerestore_client_t* client, con
if ((restore_error == RESTORE_E_SUCCESS) && type && (strcmp(type, "com.apple.mobile.restored") == 0)) {
debug("%s: Connected to %s, version %d\n", __func__, type, (int)version);
} else {
- info("%s: device %s is not in restore mode\n", __func__, udid);
+ debug("%s: device %s is not in restore mode\n", __func__, udid);
restored_client_free(restored);
idevice_free(device);
return 0;