We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31b2b80 commit b5950ddCopy full SHA for b5950dd
src/validation.cpp
@@ -2029,8 +2029,8 @@ bool CChainState::FlushStateToDisk(
2029
}
2030
// Flush best chain related state. This can only be done if the blocks / block index write was also done.
2031
if (fDoFullFlush && !CoinsTip().GetBestBlock().IsNull()) {
2032
- LOG_TIME_SECONDS(strprintf("write coins cache to disk (%d coins, %.2fkB)",
2033
- coins_count, coins_mem_usage / 1000));
+ LOG_TIME_MILLIS_WITH_CATEGORY(strprintf("write coins cache to disk (%d coins, %.2fkB)",
+ coins_count, coins_mem_usage / 1000), BCLog::BENCH);
2034
2035
// Typical Coin structures on disk are around 48 bytes in size.
2036
// Pushing a new one to the database can cause it to be written
0 commit comments