From ddb9dd407d8b92b8fba20098a64294517d5361b1 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Wed, 27 Aug 2025 14:20:22 +0300 Subject: Change xwl-s spawning error messages from info! to warn! --- src/utils/xwayland/satellite.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/utils/xwayland/satellite.rs b/src/utils/xwayland/satellite.rs index 5188b071..0a4e8f04 100644 --- a/src/utils/xwayland/satellite.rs +++ b/src/utils/xwayland/satellite.rs @@ -103,7 +103,7 @@ fn test_ondemand(path: &str) -> bool { let mut child = match process.spawn() { Ok(child) => child, Err(err) => { - info!("error spawning xwayland-satellite at {path:?}, disabling integration: {err}"); + warn!("error spawning xwayland-satellite at {path:?}, disabling integration: {err}"); return false; } }; @@ -111,13 +111,13 @@ fn test_ondemand(path: &str) -> bool { let status = match child.wait() { Ok(status) => status, Err(err) => { - info!("error waiting for xwayland-satellite, disabling integration: {err}"); + warn!("error waiting for xwayland-satellite, disabling integration: {err}"); return false; } }; if !status.success() { - info!("xwayland-satellite doesn't support on-demand activation, disabling integration"); + warn!("xwayland-satellite doesn't support on-demand activation, disabling integration"); return false; } -- cgit