diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/roughenough-client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/roughenough-client.rs b/src/bin/roughenough-client.rs index 877e433..dd780f5 100644 --- a/src/bin/roughenough-client.rs +++ b/src/bin/roughenough-client.rs @@ -275,7 +275,7 @@ fn main() { let out = matches.value_of("output"); if verbose { - println!("Requesting time from: {:?}:{:?}", host, port); + eprintln!("Requesting time from: {:?}:{:?}", host, port); } let addr = (host, port).to_socket_addrs().unwrap().next().unwrap(); @@ -325,7 +325,7 @@ fn main() { let verify_str = if verified { "Yes" } else { "No" }; if verbose { - println!( + eprintln!( "Received time from server: midpoint={:?}, radius={:?}, verified={} (merkle_index={})", out, radius, verify_str, index ); |