diff --git a/src/main.rs b/src/main.rs index 4a74d229..8ee3b0c4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -484,7 +484,8 @@ impl Future for Main { progress = true; } Ok(Async::NotReady) => (), - Err(_) => { + Err(error) => { + error!("Could not connect to server: {}", error); self.connect = Box::new(futures::future::empty()); } }