Skip to content

Commit

Permalink
chore: make phoenix error debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
XAMPPRocky committed Dec 5, 2024
1 parent b702a91 commit 529970d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net/phoenix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ pub fn spawn<M: Clone + Measurement + Sync + Send + 'static>(
.serve_connection(conn, svc)
.await
{
tracing::warn!(
tracing::error!(
"failed to reponse to phoenix request: {err}"
);
}
Expand Down Expand Up @@ -317,7 +317,7 @@ impl<M: Measurement + 'static> Phoenix<M> {
count += 1;
}
Err(error) => {
tracing::warn!(%address, %error, "error measuring distance");
tracing::debug!(%address, %error, "error measuring distance");
node.increase_error_estimate();
}
}
Expand Down

0 comments on commit 529970d

Please sign in to comment.