We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be8b435 commit 6ffcbb0Copy full SHA for 6ffcbb0
iroh/src/magicsock/remote_map/remote_state.rs
@@ -339,10 +339,10 @@ impl RemoteStateActor {
339
/// Error returns are fatal and kill the actor.
340
async fn handle_msg_send_datagram(&mut self, transmit: OwnedTransmit) -> n0_error::Result<()> {
341
if let Some(addr) = self.selected_path.get() {
342
- trace!(?addr, "sending datagram to selected path");
+ debug!(?addr, "sending datagram to selected path");
343
self.send_datagram(addr, transmit).await?;
344
} else {
345
- trace!(
+ debug!(
346
paths = ?self.paths.keys().collect::<Vec<_>>(),
347
"sending datagram to all known paths",
348
);
0 commit comments