aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2025-08-27 14:20:22 +0300
committerIvan Molodetskikh <yalterz@gmail.com>2025-08-29 19:06:16 +0300
commitddb9dd407d8b92b8fba20098a64294517d5361b1 (patch)
treee0e5a9ddd382b362b69615fb145265be6d4e9ed9
parent0cc041f5ad7332058748608de6377600fe0cad3f (diff)
downloadniri-ddb9dd407d8b92b8fba20098a64294517d5361b1.tar.gz
niri-ddb9dd407d8b92b8fba20098a64294517d5361b1.tar.bz2
niri-ddb9dd407d8b92b8fba20098a64294517d5361b1.zip
Change xwl-s spawning error messages from info! to warn!
-rw-r--r--src/utils/xwayland/satellite.rs6
1 files changed, 3 insertions, 3 deletions
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;
}