From cbfab7247475c70d5eb1ddaf2e6e77c461e689d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C3=B6lfchen?= <115360611+W-lfchen@users.noreply.github.com> Date: Fri, 30 Aug 2024 17:12:28 +0200 Subject: [PATCH 1/2] fix: demote two logging statements to debug --- crates/eww/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 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) }; From 028778532e06cfbd45784aa281cbc4df12699381 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C3=B6lfchen?= <115360611+W-lfchen@users.noreply.github.com> Date: Sat, 31 Aug 2024 16:12:14 +0200 Subject: [PATCH 2/2] fix: remove some trailing whitespace in log message --- crates/eww/src/server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 |_| {