Change xwl-s spawning error messages from info! to warn!

This commit is contained in:
Ivan Molodetskikh
2025-08-27 14:20:22 +03:00
parent 0cc041f5ad
commit ddb9dd407d
+3 -3
View File
@@ -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;
}