Log write finish

This commit is contained in:
asonix 2020-09-13 20:48:40 -05:00
parent 973a15480c
commit dc37026b9f

View file

@ -580,6 +580,8 @@ where
self.fut.take(); self.fut.take();
self.file = Some(file); self.file = Some(file);
log::debug!("Written");
Poll::Ready(Ok(())) Poll::Ready(Ok(()))
} }
Poll::Ready(Err(e)) => Poll::Ready(Err(Error::from(e).into())), Poll::Ready(Err(e)) => Poll::Ready(Err(Error::from(e).into())),
@ -587,6 +589,8 @@ where
}; };
} }
log::debug!("Ready");
Poll::Ready(Ok(())) Poll::Ready(Ok(()))
} }