fix: demote two logging statements to debug (#1183)

* fix: demote two logging statements to debug

* fix: remove some trailing whitespace in log message
This commit is contained in:
Wölfchen 2024-08-31 17:57:17 +00:00 committed by GitHub
parent 52d3669881
commit 6db0f95c57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -58,10 +58,10 @@ fn main() {
let use_wayland = opts.force_wayland || detected_wayland; let use_wayland = opts.force_wayland || detected_wayland;
#[cfg(all(feature = "wayland", feature = "x11"))] #[cfg(all(feature = "wayland", feature = "x11"))]
let result = if use_wayland { 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) run::<display_backend::WaylandBackend>(opts, eww_binary_name)
} else { } 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) run::<display_backend::X11Backend>(opts, eww_binary_name)
}; };