aboutsummaryrefslogtreecommitdiff
path: root/src/handlers
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2023-09-03 15:15:55 +0400
committerIvan Molodetskikh <yalterz@gmail.com>2023-09-03 15:15:55 +0400
commit95cbe2a636e89b4ccd24baa8420e02a519658efd (patch)
tree983d1b93844d378c6678cd89e99421331a15f8e4 /src/handlers
parentcc1c9d93254df120fc1041e121cb3b5edd00ffc9 (diff)
downloadniri-95cbe2a636e89b4ccd24baa8420e02a519658efd.tar.gz
niri-95cbe2a636e89b4ccd24baa8420e02a519658efd.tar.bz2
niri-95cbe2a636e89b4ccd24baa8420e02a519658efd.zip
Send scanout feedbacks to surfaces
Diffstat (limited to 'src/handlers')
-rw-r--r--src/handlers/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlers/mod.rs b/src/handlers/mod.rs
index 0e330322..95fc3fa9 100644
--- a/src/handlers/mod.rs
+++ b/src/handlers/mod.rs
@@ -92,7 +92,7 @@ impl DmabufHandler for State {
match self.backend.renderer().import_dmabuf(&dmabuf, None) {
Ok(_texture) => Ok(()),
Err(err) => {
- warn!("error importing dmabuf: {err:?}");
+ debug!("error importing dmabuf: {err:?}");
Err(ImportError::Failed)
}
}