refactor(all): adjust some logging

This commit is contained in:
Sean McArthur
2015-05-09 22:18:05 -07:00
parent 38f40c7f6a
commit a3637d5f73
4 changed files with 6 additions and 4 deletions

View File

@@ -32,6 +32,7 @@ impl Response {
/// Creates a new response from a server.
pub fn new(stream: Box<NetworkStream + Send>) -> ::Result<Response> {
trace!("Response::new");
let mut stream = BufReader::new(stream);
let head = try!(http::parse_response(&mut stream));