libsnapshot: Remove misleading message

If we read up to a label, this error message is unneeded, and if we
don't, we already return an error message before this, leaving the old
message as entirely redundant and misleading.

Test: Run, verify "No COW Footer, recovered data" does not show in logs
Bug: 172026020
Change-Id: I31d054ccf898cf93c71ff201f0868e57cd1a6135
This commit is contained in:
Daniel Rosenberg 2020-12-14 17:06:02 -08:00
parent 77692aeea2
commit 28b73f8472
1 changed files with 0 additions and 2 deletions

View File

@ -222,8 +222,6 @@ bool CowReader::ParseOps(std::optional<uint64_t> label) {
LOG(ERROR) << "ops checksum does not match";
return false;
}
} else {
LOG(INFO) << "No COW Footer, recovered data";
}
ops_ = ops_buffer;