From 0e332c66f2b42232cbcefd4ad9af59af4a8e326e Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 23 Jan 2017 22:50:42 -0800 Subject: [PATCH] refactor(http): adjust socket eof debug log --- src/http/conn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/conn.rs b/src/http/conn.rs index f3177386..758b961a 100644 --- a/src/http/conn.rs +++ b/src/http/conn.rs @@ -97,7 +97,7 @@ impl Conn { other => Err(io::Error::new(io::ErrorKind::UnexpectedEof, other)), } } else { - debug!("socket read eof"); + debug!("socket complete"); Ok(Async::Ready(None)) } };