Skip to content

Commit

Permalink
Make mps module logs consistent (#1204)
Browse files Browse the repository at this point in the history
* Make mps log use uppercase terms (for consistency with other logs)

* Try 'Mps' prefix instead
  • Loading branch information
Alex6323 authored Mar 3, 2022
1 parent 82b945c commit 5a475dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bee-node/src/plugins/mps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl Plugin for Mps {
async fn start(_: Self::Config, bus: &Bus<'_>) -> Result<Self, Self::Error> {
bus.add_listener::<(), MpsMetricsUpdated, _>(|metrics| {
info!(
"incoming {} new {} known {} invalid {} outgoing {}",
"Mps: incoming {} new {} known {} invalid {} outgoing {}",
metrics.incoming, metrics.new, metrics.known, metrics.invalid, metrics.outgoing
);
});
Expand Down

0 comments on commit 5a475dc

Please sign in to comment.