refactor(hyprland): improve logging

This commit is contained in:
Jake Stanger 2024-10-18 23:58:04 +01:00
parent 6240b4b4fd
commit c1e8b26749
No known key found for this signature in database
GPG Key ID: C51FC8F9CB0BEA61

View File

@ -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}");
}
});
}
@ -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,