Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mozilla/geckodriver.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/marionette.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/marionette.rs b/src/marionette.rs
index 81463c2..1039795 100644
--- a/src/marionette.rs
+++ b/src/marionette.rs
@@ -1352,7 +1352,7 @@ impl MarionetteConnection {
fn send(&mut self, msg: Json) -> WebDriverResult<String> {
let data = self.encode_msg(msg);
- trace!("→ {}", data);
+ trace!("-> {}", data);
match self.stream {
Some(ref mut stream) => {
@@ -1426,7 +1426,7 @@ impl MarionetteConnection {
// TODO(jgraham): Need to handle the error here
let data = String::from_utf8(payload).unwrap();
- trace!("← {}", data);
+ trace!("<- {}", data);
Ok(data)
}