Log write finish

This commit is contained in:
asonix 2020-09-13 20:48:40 -05:00
parent 973a15480c
commit dc37026b9f
1 changed files with 4 additions and 0 deletions

View File

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