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 |_| {