Skip to content

Commit

Permalink
Merge pull request #2694 from bitshares/update-p2p-stats-log-level
Browse files Browse the repository at this point in the history
Update p2p call stats collector log level to debug
  • Loading branch information
abitmore committed Nov 30, 2022
2 parents fdc27a5 + 0fc9b33 commit 4d49bdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/net/node_impl.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,10 @@ class statistics_gathering_node_delegate_wrapper : public node_delegate
(*_delay_after_accumulator)(delay_after.count());
if (total_duration > fc::milliseconds(500))
{
ilog("Call to method node_delegate::${method} took ${total_duration}us, longer than our target maximum of 500ms",
dlog("Call to method node_delegate::${method} took ${total_duration}us, longer than our target maximum of 500ms",
("method", _method_name)
("total_duration", total_duration.count()));
ilog("Actual execution took ${execution_duration}us, with a ${delegate_delay}us delay before the delegate thread started "
dlog("Actual execution took ${execution_duration}us, with a ${delegate_delay}us delay before the delegate thread started "
"executing the method, and a ${p2p_delay}us delay after it finished before the p2p thread started processing the response",
("execution_duration", actual_execution_time)
("delegate_delay", delay_before)
Expand Down

0 comments on commit 4d49bdd

Please sign in to comment.