Skip to content

Commit

Permalink
Reduce logging level for the mDNS responder (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyGrondin authored Nov 9, 2024
1 parent 4d73d82 commit f7039b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions edge-mdns/src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ where
// Support one-shot legacy queries by replying privately
// to the remote address, if the query was not sent from the mDNS port (as per the spec)

info!("Replying privately to a one-shot mDNS query from {remote}");
debug!("Replying privately to a one-shot mDNS query from {remote}");

if let Err(err) = send.send(remote, data).await {
warn!("Failed to reply privately to {remote}: {err:?}");
Expand All @@ -329,7 +329,7 @@ where
self.delay().await;
}

info!("Re-broadcasting due to mDNS query from {remote}");
debug!("Re-broadcasting due to mDNS query from {remote}");

self.broadcast_once(send, data).await?;
}
Expand All @@ -356,7 +356,7 @@ where
)
{
if !data.is_empty() {
info!("Broadcasting mDNS entry to {remote_addr}");
debug!("Broadcasting mDNS entry to {remote_addr}");

let fut = pin!(send.send(remote_addr, data));

Expand Down

0 comments on commit f7039b8

Please sign in to comment.