Skip to content

Commit

Permalink
fix: demote two logging statements to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
w-lfchen committed Aug 30, 2024
1 parent 4a53c12 commit cbfab72
Showing 1 changed file with 2 additions and 2 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

0 comments on commit cbfab72

Please sign in to comment.