diff options
author | Tianjie Xu <xunchang@google.com> | 2015-12-11 01:23:45 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-12-11 01:23:45 +0100 |
commit | 32f6298742d5072c4b0d9f1cd09e0d0ae44cb972 (patch) | |
tree | ee8221d2001813c481b6f19f79d49b5277db5251 /updater/blockimg.cpp | |
parent | Merge changes If00669a7,Ia5504ed2 (diff) | |
parent | updater: Output msg when recovery is called (diff) | |
download | android_bootable_recovery-32f6298742d5072c4b0d9f1cd09e0d0ae44cb972.tar android_bootable_recovery-32f6298742d5072c4b0d9f1cd09e0d0ae44cb972.tar.gz android_bootable_recovery-32f6298742d5072c4b0d9f1cd09e0d0ae44cb972.tar.bz2 android_bootable_recovery-32f6298742d5072c4b0d9f1cd09e0d0ae44cb972.tar.lz android_bootable_recovery-32f6298742d5072c4b0d9f1cd09e0d0ae44cb972.tar.xz android_bootable_recovery-32f6298742d5072c4b0d9f1cd09e0d0ae44cb972.tar.zst android_bootable_recovery-32f6298742d5072c4b0d9f1cd09e0d0ae44cb972.zip |
Diffstat (limited to 'updater/blockimg.cpp')
-rw-r--r-- | updater/blockimg.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp index 50067d479..3b26f057a 100644 --- a/updater/blockimg.cpp +++ b/updater/blockimg.cpp @@ -1670,6 +1670,9 @@ Value* BlockImageRecoverFn(const char* name, State* state, int argc, Expr* argv[ return StringValue(strdup("")); } + // Output notice to log when recover is attempted + fprintf(stderr, "%s image corrupted, attempting to recover...\n", filename->data); + // When opened with O_RDWR, libfec rewrites corrupted blocks when they are read fec::io fh(filename->data, O_RDWR); @@ -1720,7 +1723,7 @@ Value* BlockImageRecoverFn(const char* name, State* state, int argc, Expr* argv[ // read and check if the errors field value has increased. } } - + fprintf(stderr, "...%s image recovered successfully.\n", filename->data); return StringValue(strdup("t")); } |