aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/tty.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tty.rs b/src/backend/tty.rs
index 08aef704..486c3c1b 100644
--- a/src/backend/tty.rs
+++ b/src/backend/tty.rs
@@ -508,7 +508,7 @@ impl Tty {
path: &Path,
niri: &mut Niri,
) -> anyhow::Result<()> {
- debug!("device added: {device_id} {path:?}");
+ debug!("adding device: {device_id} {path:?}");
let node = DrmNode::from_dev_id(device_id)?;
@@ -746,7 +746,7 @@ impl Tty {
}
fn device_removed(&mut self, device_id: dev_t, niri: &mut Niri) {
- debug!("device removed: {device_id}");
+ debug!("removing device: {device_id}");
let Ok(node) = DrmNode::from_dev_id(device_id) else {
warn!("error creating DrmNode");