summaryrefslogtreecommitdiffstats
path: root/src/restore.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/restore.c')
-rw-r--r--src/restore.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/restore.c b/src/restore.c
index bb3ed96..5e42b97 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -275,7 +275,7 @@ int restore_open_with_timeout(struct idevicerestore_client_t* client) {
const char* restore_progress_string(unsigned int operation) {
switch (operation) {
case WAIT_FOR_STORAGE:
- return "Waiting for Storage Device...";
+ return "Waiting for storage device";
case CREATE_PARTITION_MAP:
return "Creating partition map";
@@ -314,13 +314,13 @@ const char* restore_progress_string(unsigned int operation) {
return "Partition NAND device";
case WAIT_FOR_NAND:
- return "Waiting for NAND...";
+ return "Waiting for NAND";
case WAIT_FOR_DEVICE:
- return "Waiting for Device...";
+ return "Waiting for device";
case LOAD_KERNEL_CACHE:
- return "Loading kernelcache...";
+ return "Loading kernelcache";
case LOAD_NOR:
return "Loading NOR data to flash";
@@ -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;