diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-02-21 09:20:34 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-02-21 09:20:34 +0400 |
| commit | 7d41f113cb9cdceadfc0d0a882c1bc55310c2eac (patch) | |
| tree | 1c93a61205cd450e81ae19c56fc4bf54af1305a9 /src/handlers/mod.rs | |
| parent | 63e5cf8798dbb87145e81eec24c8cddc55d04c23 (diff) | |
| download | niri-7d41f113cb9cdceadfc0d0a882c1bc55310c2eac.tar.gz niri-7d41f113cb9cdceadfc0d0a882c1bc55310c2eac.tar.bz2 niri-7d41f113cb9cdceadfc0d0a882c1bc55310c2eac.zip | |
Change non-bug error! to warn!
Be consistent with our usage.
Diffstat (limited to 'src/handlers/mod.rs')
| -rw-r--r-- | src/handlers/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlers/mod.rs b/src/handlers/mod.rs index eb5a986f..f175f7bd 100644 --- a/src/handlers/mod.rs +++ b/src/handlers/mod.rs @@ -297,7 +297,7 @@ impl SecurityContextHandler for State { }); if let Err(err) = state.niri.display_handle.insert_client(client, data) { - error!("error inserting client: {err}"); + warn!("error inserting client: {err}"); } else { trace!("inserted a new restricted client, context={context:?}"); } |
