Skip to content

Commit

Permalink
chore(wm): add debug event info to ignored windows
Browse files Browse the repository at this point in the history
  • Loading branch information
LGUG2Z committed Mar 3, 2024
1 parent 3690f8e commit 41e9068
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions komorebi/src/window.rs
Expand Up @@ -534,8 +534,13 @@ fn window_is_eligible(
|| managed_override
{
return true;
} else if event.is_some() {
tracing::debug!("ignoring (exe: {}, title: {})", exe_name, title);
} else if let Some(event) = event {
tracing::debug!(
"ignoring (exe: {}, title: {}, event: {})",
exe_name,
title,
event
);
}

false
Expand Down

0 comments on commit 41e9068

Please sign in to comment.