diff options
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index a19abfa2..6b7994d0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -62,11 +62,11 @@ fn main() -> Result<(), Box<dyn std::error::Error>> { // DISPLAY or WAYLAND_DISPLAY from our environment if they are set, since they will cause // the winit backend to be selected instead. if env::var_os("DISPLAY").is_some() { - debug!("running as a session but DISPLAY is set, removing it"); + warn!("running as a session but DISPLAY is set, removing it"); env::remove_var("DISPLAY"); } if env::var_os("WAYLAND_DISPLAY").is_some() { - debug!("running as a session but WAYLAND_DISPLAY is set, removing it"); + warn!("running as a session but WAYLAND_DISPLAY is set, removing it"); env::remove_var("WAYLAND_DISPLAY"); } |
