diff --git a/eden/fs/store/LocalStore.cpp b/eden/fs/store/LocalStore.cpp index 405e3c49fa..f18368fd07 100644 --- a/eden/fs/store/LocalStore.cpp +++ b/eden/fs/store/LocalStore.cpp @@ -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