Skip to content

Commit

Permalink
GH-1091 Use debug level log instead of info
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Jan 23, 2025
1 parent 06dad7d commit a1bebf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/net_plugin/net_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ namespace eosio {

void operator()( const block_notice_message& msg ) const {
// continue call to handle_message on connection strand
peer_ilog( c, "handle block_notice_message #${bn}:${id}", ("bn", block_header::num_from_id(msg.id))("id", msg.id) );
peer_dlog( c, "handle block_notice_message #${bn}:${id}", ("bn", block_header::num_from_id(msg.id))("id", msg.id) );
c->handle_message( msg );
}
};
Expand Down Expand Up @@ -1927,7 +1927,7 @@ namespace eosio {
return;
}
if (net_msg == msg_type_t::signed_block)
fc_ilog(logger, "Connection - ${cid} - done sending block ${bn}", ("cid", conn->connection_id)("bn", block_num));
fc_dlog(logger, "Connection - ${cid} - done sending block ${bn}", ("cid", conn->connection_id)("bn", block_num));
if (close_after_send != no_reason) {
fc_ilog( logger, "sent a go away message: ${r}, closing connection ${cid}",
("r", reason_str(close_after_send))("cid", conn->connection_id) );
Expand Down Expand Up @@ -3143,7 +3143,7 @@ namespace eosio {
block_num_type fork_db_root_num = my_impl->get_fork_db_root_num();
if( blk_num <= fork_db_root_num ) {
pending_message_buffer.advance_read_ptr( message_length ); // advance before any send
peer_ilog( this, "received block ${n} less than froot ${fr}", ("n", blk_num)("fr", fork_db_root_num) );
peer_dlog( this, "received block ${n} less than froot ${fr}", ("n", blk_num)("fr", fork_db_root_num) );
send_block_nack(blk_id);
cancel_sync_wait();

Expand Down

0 comments on commit a1bebf2

Please sign in to comment.