Skip to content

Commit

Permalink
chore: downgrade ipc warning (#10205)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Aug 8, 2024
1 parent c639648 commit ea25df7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/rpc/ipc/src/server/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ where
}
}
Some(Err(err)) => {
tracing::warn!("IPC request failed: {:?}", err);
// this can happen if the client closes the connection
tracing::debug!("IPC request failed: {:?}", err);
return Poll::Ready(())
}
None => return Poll::Ready(()),
Expand Down

0 comments on commit ea25df7

Please sign in to comment.