one line anyhow error formatting

This commit is contained in:
Igor Katson 2024-09-13 12:36:32 +01:00
parent 06613d9ef1
commit a73f921c5f
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
4 changed files with 9 additions and 9 deletions

View file

@ -154,7 +154,7 @@ macro_rules! poll_try_io {
match e {
Ok(r) => r,
Err(e) => {
debug!("stream error {e:?}");
debug!("stream error {e:#}");
return Poll::Ready(Err(e));
}
}