Pull Request Title:
Improve P2P address loading log message
Pull Request Description:
Summary
This PR improves the clarity of a log message in src/init.cpp
by making it more descriptive.
Change Details
- Updated the log message from:
To:
0LogPrintf("Loading P2P addresses...\n");
0LogPrintf("Initializing: Loading stored P2P addresses from peers.dat...\n");
- The change helps developers understand that Bitcoin Core is loading stored peer addresses from
peers.dat
, instead of a generic “Loading P2P addresses” message.
Why This Change?
- Improves readability and debugging clarity.
- Provides more context about where the data is coming from (
peers.dat
). - Helps developers and node operators interpret logs more accurately.