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;
|
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)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@ pub fn initialize_server<B: DisplayBackend>(
|
||||||
┏━━━━━━━━━━━━━━━━━━━━━━━┓
|
┏━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||||
┃Initializing eww daemon┃
|
┃Initializing eww daemon┃
|
||||||
┗━━━━━━━━━━━━━━━━━━━━━━━┛
|
┗━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||||
"#
|
"#
|
||||||
);
|
);
|
||||||
|
|
||||||
simple_signal::set_handler(&[simple_signal::Signal::Int, simple_signal::Signal::Term], move |_| {
|
simple_signal::set_handler(&[simple_signal::Signal::Int, simple_signal::Signal::Term], move |_| {
|
||||||
|
|
Loading…
Add table
Reference in a new issue