Skip to content

Commit

Permalink
Demote packet tracking logs to trace level
Browse files Browse the repository at this point in the history
  • Loading branch information
akiroz committed Jan 15, 2024
1 parent a67b98c commit c5fc6f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ impl Remote {
use mqtt::Event::Incoming;
match event_loop.poll().await {
Ok(Incoming(pkt)) => {
log::debug!("broker[{}] recv {:?}", idx, pkt);
log::trace!("broker[{}] recv {:?}", idx, pkt);
Self::handle_packet(&mut context, pkt).await;
}
x => {
log::debug!("broker[{}] recv {:?}", idx, x);
log::trace!("broker[{}] recv {:?}", idx, x);
continue;
}
};
Expand Down Expand Up @@ -156,7 +156,7 @@ impl Remote {
} else { // Alias not used
topic
};
log::debug!(
log::trace!(
"pub {:?} props: {:?}",
topic_to_send,
properties
Expand Down

0 comments on commit c5fc6f3

Please sign in to comment.