Skip to content

Commit

Permalink
refactor(hyprland): improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeStanger committed Oct 18, 2024
1 parent 6240b4b commit c1e8b26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/clients/compositor/hyprland.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ impl Client {
{
Self::send_focus_change(&mut prev_workspace, workspace, &tx);
} else {
error!("Unable to locate workspace");
error!("unable to locate workspace: {workspace_name}");
}
});
}
Expand Down Expand Up @@ -154,6 +154,7 @@ impl Client {

event_listener.add_workspace_rename_handler(move |data| {
let _lock = lock!(lock);
debug!("Received workspace rename: {data:?}");

send!(
tx,
Expand Down

0 comments on commit c1e8b26

Please sign in to comment.