Skip to content

Commit

Permalink
webdriver: Don't log response at error level
Browse files Browse the repository at this point in the history
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 7cdaa70fdea1600fd22a7daddf0dc890e9e91bf4
  • Loading branch information
jgraham committed Aug 27, 2015
1 parent e0a42eb commit 8cbd392
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/webdriver/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ impl Handler for HttpHandler {
(err.http_status(), err.to_json_string())
}
};
error!("Returning status {:?}", status);
error!("Returning body {}", resp_body);
debug!("Returning status {:?}", status);
debug!("Returning body {}", resp_body);
{
let resp_status = res.status_mut();
*resp_status = status;
Expand Down

0 comments on commit 8cbd392

Please sign in to comment.