chore(block_cache): produce less noise in verbose logging mode

This commit is contained in:
Marcus Holland-Moritz 2025-04-15 09:59:07 +02:00
parent 4168649c2f
commit 6cf07409dc

View File

@ -724,7 +724,7 @@ class block_cache_ final : public block_cache::impl {
block->touch(); block->touch();
} }
LOG_VERBOSE << "inserting block " << block_no << " into cache"; LOG_DEBUG << "inserting block " << block_no << " into cache";
cache_.set(block_no, std::move(block)); cache_.set(block_no, std::move(block));
} }