Log local wallet info on startup (#4869)

This commit is contained in:
Piotr Wójcik 2025-03-24 09:47:29 +01:00 committed by Piotr Wójcik
commit 1c1502c9ce

View file

@ -1466,6 +1466,10 @@ nano::wallets::wallets (bool error_a, nano::node & node_a) :
} }
logger.info (nano::log::type::wallet, "Found {} wallet(s)", items.size ()); logger.info (nano::log::type::wallet, "Found {} wallet(s)", items.size ());
for (auto const & item : items)
{
logger.info (nano::log::type::wallet, "Wallet: {}", item.first.to_string ());
}
// Backup before upgrade wallets // Backup before upgrade wallets
bool backup_required (false); bool backup_required (false);