refactor(http): adjust socket eof debug log

This commit is contained in:
Sean McArthur
2017-01-23 22:50:42 -08:00
parent 8597c55a13
commit 0e332c66f2

View File

@@ -97,7 +97,7 @@ impl<I: Io, T: Http1Transaction, K: KeepAlive> Conn<I, T, K> {
other => Err(io::Error::new(io::ErrorKind::UnexpectedEof, other)),
}
} else {
debug!("socket read eof");
debug!("socket complete");
Ok(Async::Ready(None))
}
};