Skip to content

Commit

Permalink
Even more logging in UR
Browse files Browse the repository at this point in the history
  • Loading branch information
akoshelev committed Dec 7, 2023
1 parent edb93c5 commit 1540fff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ipa-core/src/helpers/buffers/unordered_receiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,9 @@ where
fn poll_next<M: Message>(&mut self, cx: &mut Context<'_>) -> Poll<Result<M, Error>> {
self.max_polled_idx = std::cmp::max(self.max_polled_idx, self.next);
if let Some(m) = self.spare.read() {
let this_recv = self.next;
self.wake_next();
tracing::trace!("Resolved receiver at {this_recv}, next one is {}", self.next);
return Poll::Ready(Ok(m));
}

Expand Down

0 comments on commit 1540fff

Please sign in to comment.