diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-08-27 14:20:22 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-08-29 19:06:16 +0300 |
| commit | ddb9dd407d8b92b8fba20098a64294517d5361b1 (patch) | |
| tree | e0e5a9ddd382b362b69615fb145265be6d4e9ed9 /src | |
| parent | 0cc041f5ad7332058748608de6377600fe0cad3f (diff) | |
| download | niri-ddb9dd407d8b92b8fba20098a64294517d5361b1.tar.gz niri-ddb9dd407d8b92b8fba20098a64294517d5361b1.tar.bz2 niri-ddb9dd407d8b92b8fba20098a64294517d5361b1.zip | |
Change xwl-s spawning error messages from info! to warn!
Diffstat (limited to 'src')
| -rw-r--r-- | src/utils/xwayland/satellite.rs | 6 |
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; } |
