drop the log level of a debug message in LocalStore.cpp

Summary:
This message is pretty noisy when running EdenFS with an increased debug
logging level.  Bump the debug level down so it doesn't spam the logs when
running at a slightly elevated debug level.  Also fix a minor typo.

Reviewed By: fanzeyi

Differential Revision: D18820281

fbshipit-source-id: 668367337f4a8cf2a38003c8e0034969d335c2c0
This commit is contained in:
Adam Simpkins 2019-12-04 16:27:22 -08:00 committed by Facebook Github Bot
parent ff441bf0a6
commit e6de5c6c3e

View File

@ -191,8 +191,8 @@ BlobMetadata LocalStore::getMetadataFromBlob(const Blob* blob) {
void LocalStore::putBlobWithoutMetadata(const Hash& id, const Blob* blob) {
if (!enableBlobCaching) {
XLOG(DBG4) << "Skipping caching " << id
<< " because blob cache is diabled via config";
XLOG(DBG8) << "Skipping caching " << id
<< " because blob cache is disabled via config";
return;
}
// Since blob serialization is moderately complex, just delegate