Skip to content

Commit

Permalink
fix: demote two logging statements to debug (#1183)
Browse files Browse the repository at this point in the history
* fix: demote two logging statements to debug

* fix: remove some trailing whitespace in log message
  • Loading branch information
w-lfchen authored Aug 31, 2024
1 parent 52d3669 commit 6db0f95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/eww/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::<display_backend::WaylandBackend>(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::<display_backend::X11Backend>(opts, eww_binary_name)
};

Expand Down
2 changes: 1 addition & 1 deletion crates/eww/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub fn initialize_server<B: DisplayBackend>(
┏━━━━━━━━━━━━━━━━━━━━━━━┓
┃Initializing eww daemon┃
┗━━━━━━━━━━━━━━━━━━━━━━━┛
"#
"#
);

simple_signal::set_handler(&[simple_signal::Signal::Int, simple_signal::Signal::Term], move |_| {
Expand Down

0 comments on commit 6db0f95

Please sign in to comment.