From 6db0f95c57c28ac00448717342502a37275bc670 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C3=B6lfchen?= Date: Sat, 31 Aug 2024 17:57:17 +0000 Subject: [PATCH] fix: demote two logging statements to debug (#1183) * fix: demote two logging statements to debug * fix: remove some trailing whitespace in log message --- crates/eww/src/main.rs | 4 ++-- crates/eww/src/server.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/eww/src/main.rs b/crates/eww/src/main.rs index eb2b7d35..853a8fb3 100644 --- a/crates/eww/src/main.rs +++ b/crates/eww/src/main.rs @@ -58,10 +58,10 @@ fn main() { let use_wayland = opts.force_wayland || detected_wayland; #[cfg(all(feature = "wayland", feature = "x11"))] let result = if use_wayland { - log::info!("Running on wayland. force_wayland={}, detected_wayland={}", opts.force_wayland, detected_wayland); + log::debug!("Running on wayland. force_wayland={}, detected_wayland={}", opts.force_wayland, detected_wayland); run::(opts, eww_binary_name) } else { - log::info!("Running on X11. force_wayland={}, detected_wayland={}", opts.force_wayland, detected_wayland); + log::debug!("Running on X11. force_wayland={}, detected_wayland={}", opts.force_wayland, detected_wayland); run::(opts, eww_binary_name) }; diff --git a/crates/eww/src/server.rs b/crates/eww/src/server.rs index 57af1e5c..8e22d3f2 100644 --- a/crates/eww/src/server.rs +++ b/crates/eww/src/server.rs @@ -57,7 +57,7 @@ pub fn initialize_server( ┏━━━━━━━━━━━━━━━━━━━━━━━┓ ┃Initializing eww daemon┃ ┗━━━━━━━━━━━━━━━━━━━━━━━┛ - "# +"# ); simple_signal::set_handler(&[simple_signal::Signal::Int, simple_signal::Signal::Term], move |_| {