From 82b95974f10e8b7fa483ec856f9863a590479b53 Mon Sep 17 00:00:00 2001 From: Imbris Date: Sun, 22 Nov 2020 03:12:08 -0500 Subject: [PATCH] Log errors occuring when client keeps retrying connection to the server --- voxygen/src/menu/main/client_init.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voxygen/src/menu/main/client_init.rs b/voxygen/src/menu/main/client_init.rs index f3ec5fdb2d..a1e01ab71a 100644 --- a/voxygen/src/menu/main/client_init.rs +++ b/voxygen/src/menu/main/client_init.rs @@ -12,7 +12,7 @@ use std::{ thread, time::Duration, }; -use tracing::{debug, trace, warn}; +use tracing::{trace, warn}; #[derive(Debug)] pub enum Error { @@ -107,7 +107,7 @@ impl ClientInit { )); break 'tries; } else { - debug!("Cannot connect to server: Timeout (retrying...)"); + warn!(?e, "Failed to connect to the server. Retrying..."); } }, Err(e) => {