log: [refactor] Use info level for init logs

This refactor does not change behavior.
This commit is contained in:
MarcoFalke
2025-07-25 09:52:43 +02:00
parent fa183761cb
commit face8123fd
27 changed files with 106 additions and 102 deletions

View File

@@ -32,7 +32,7 @@ SignatureCache::SignatureCache(const size_t max_size_bytes)
m_salted_hasher_schnorr.Write(PADDING_SCHNORR, 32);
const auto [num_elems, approx_size_bytes] = setValid.setup_bytes(max_size_bytes);
LogPrintf("Using %zu MiB out of %zu MiB requested for signature cache, able to store %zu elements\n",
LogInfo("Using %zu MiB out of %zu MiB requested for signature cache, able to store %zu elements",
approx_size_bytes >> 20, max_size_bytes >> 20, num_elems);
}