binarystore: Remove spammy log lines
These provide no debugging value and pollute the logs with lines for
many of the valid queries made against the binary store.
Change-Id: Iec9458045a394cc57c6f3a6910676c5471f57480
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/src/binarystore.cpp b/src/binarystore.cpp
index 525ec21..65e7721 100644
--- a/src/binarystore.cpp
+++ b/src/binarystore.cpp
@@ -119,8 +119,6 @@
return true;
}
- log<level::NOTICE>("Try loading blob from persistent data",
- entry("BASE_ID=%s", baseBlobId_.c_str()));
std::string protoBlobId;
static constexpr auto blobcb = [](pb_istream_t* stream,
const pb_field_iter_t*,
@@ -295,7 +293,6 @@
blobs_.emplace(blobId, std::vector<std::uint8_t>{});
currentBlob_ = blobId;
commitState_ = CommitState::Dirty;
- log<level::NOTICE>("Created new blob", entry("BLOB_ID=%s", blobId.c_str()));
return true;
}