Merge "updater: Output msg when recovery is called"
am: 32f6298742
* commit '32f6298742d5072c4b0d9f1cd09e0d0ae44cb972':
updater: Output msg when recovery is called
This commit is contained in:
commit
3e67970c2c
1 changed files with 4 additions and 1 deletions
|
@ -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"));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue