Trace entry in peer.rs for Stream shutdown

This commit is contained in:
Tony Garnock-Jones 2020-06-17 13:42:06 +02:00
parent 166e3cc8c0
commit 186192308a
1 changed files with 4 additions and 1 deletions

View File

@ -139,7 +139,10 @@ where I: Stream<Item = ResultC2S> + Send,
}
}
}
None => running = false,
None => {
tracing::trace!("remote has closed");
running = false;
}
},
msgopt = self.rx.recv().boxed().fuse() => {
let mut ok = true;