Skip to content

Commit

Permalink
feat(log): change 'particle received' log to info [NET-472] (#1616)
Browse files Browse the repository at this point in the history
feat(log): change 'particle received' log to info
  • Loading branch information
justprosh committed May 16, 2023
1 parent 6f7c684 commit 0047edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connection-pool/src/behaviour.rs
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ impl NetworkBehaviour for ConnectionPoolBehaviour {
) {
match event {
HandlerMessage::InParticle(particle) => {
tracing::trace!(target: "network", particle_id = particle.id,"{}: received particle from {}; queue {}", self.peer_id, from, self.queue.len());
tracing::info!(target: "network", particle_id = particle.id,"{}: received particle from {}; queue {}", self.peer_id, from, self.queue.len());
self.meter(|m| {
m.incoming_particle(
&particle.id,
Expand Down

0 comments on commit 0047edf

Please sign in to comment.