Skip to content

Commit

Permalink
Print more.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrippled committed Aug 8, 2024
1 parent 530bd6f commit 798c00b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xrpld/app/misc/NetworkOPs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2303,7 +2303,7 @@ NetworkOPsImp::recvValidation(
std::shared_ptr<STValidation> const& val,
std::string const& source)
{
JLOG(m_journal.debug()) << val->render();
JLOG(m_journal.debug()) << "VALIDATION: " << val->render();
JLOG(m_journal.trace())
<< "recvValidation " << val->getLedgerHash() << " from " << source;

Expand Down
2 changes: 1 addition & 1 deletion src/xrpld/consensus/Consensus.h
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ Consensus<Adaptor>::peerProposal(
NetClock::time_point const& now,
PeerPosition_t const& newPeerPos)
{
JLOG(j_.debug()) << newPeerPos.render();
JLOG(j_.debug()) << "PROPOSAL " << newPeerPos.render();
auto const& peerID = newPeerPos.proposal().nodeID();

// Always need to store recent positions
Expand Down

0 comments on commit 798c00b

Please sign in to comment.