summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2010-07-12 14:56:47 +0200
committerGravatar Martin Szulecki2010-07-12 14:56:47 +0200
commitafb36f37770e1b429fcd227904cff6235ee90b5f (patch)
tree25a4b84028daad9b6df37a0dd3521cfb83d8583b /src
parentc41bfdcfc9c8da11249422c70de6bc0884ebd32b (diff)
downloadidevicerestore-afb36f37770e1b429fcd227904cff6235ee90b5f.tar.gz
idevicerestore-afb36f37770e1b429fcd227904cff6235ee90b5f.tar.bz2
Be more verbose when reporting about each step of the restore process
Diffstat (limited to 'src')
-rw-r--r--src/restore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/restore.c b/src/restore.c
index bb3ed96..7eed0ae 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -406,7 +406,7 @@ int restore_send_filesystem(idevice_t device, const char* filesystem) {
// this step sends requested chunks of data from various offsets to asr so
// it can validate the filesystem before installing it
- debug("Preparing to validate the filesystem\n");
+ info("Validating the filesystem\n");
if (asr_perform_validation(asr, filesystem) < 0) {
error("ERROR: ASR was unable to validate the filesystem\n");
asr_close(asr);
@@ -416,13 +416,13 @@ int restore_send_filesystem(idevice_t device, const char* filesystem) {
// once the target filesystem has been validated, ASR then requests the
// entire filesystem to be sent.
- debug("Preparing to send filesystem\n");
+ info("Sending filesystem now...\n");
if (asr_send_payload(asr, filesystem) < 0) {
error("ERROR: Unable to send payload to ASR\n");
asr_close(asr);
return -1;
}
- info("Filesystem finished\n");
+ info("Filesystem sent\n");
asr_close(asr);
return 0;