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:
parent
52d3669881
commit
6db0f95c57
2 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue