Skip to content

Commit

Permalink
Correctly output message type name steemit#2510
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandeberg committed Jun 5, 2018
1 parent 408aab2 commit dc38253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/net/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3964,7 +3964,7 @@ namespace graphene { namespace net {
}
else
{
STATSD_TIMER( "p2p", "latency", fc::variant( message_to_process.msg_type ).as_string(), message_receive_time - iter->second, 0.1f );
STATSD_TIMER( "p2p", "latency", fc::variant( core_message_type_enum( message_to_process.msg_type ) ).as_string(), message_receive_time - iter->second, 0.1f );
originating_peer->items_requested_from_peer.erase( iter );
if (originating_peer->idle())
trigger_fetch_items_loop();
Expand Down

0 comments on commit dc38253

Please sign in to comment.