Skip to content

Commit

Permalink
Log capitalization (#4561)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev authored Apr 14, 2024
1 parent 6f8e1d3 commit 90d2efb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions nano/store/lmdb/lmdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,10 @@ void nano::store::lmdb::component::upgrade_v22_to_v23 (store::write_transaction
processed_accounts++;
if (processed_accounts % 250000 == 0)
{
logger.info (nano::log::type::lmdb, "processed {} accounts", processed_accounts);
logger.info (nano::log::type::lmdb, "Processed {} accounts", processed_accounts);
}
}
logger.info (nano::log::type::lmdb, "processed {} accounts", processed_accounts);
logger.info (nano::log::type::lmdb, "Processed {} accounts", processed_accounts);
version.put (transaction_a, 23);
logger.info (nano::log::type::lmdb, "Upgrading database from v22 to v23 completed");
}
Expand Down
4 changes: 2 additions & 2 deletions nano/store/rocksdb/rocksdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,10 +309,10 @@ void nano::store::rocksdb::component::upgrade_v22_to_v23 (store::write_transacti
processed_accounts++;
if (processed_accounts % 250000 == 0)
{
logger.info (nano::log::type::lmdb, "processed {} accounts", processed_accounts);
logger.info (nano::log::type::lmdb, "Processed {} accounts", processed_accounts);
}
}
logger.info (nano::log::type::lmdb, "processed {} accounts", processed_accounts);
logger.info (nano::log::type::lmdb, "Processed {} accounts", processed_accounts);
version.put (transaction_a, 23);
logger.info (nano::log::type::rocksdb, "Upgrading database from v22 to v23 completed");
}
Expand Down

0 comments on commit 90d2efb

Please sign in to comment.