Skip to content

Commit

Permalink
refactor(logs): reduce noise on info level
Browse files Browse the repository at this point in the history
  • Loading branch information
LGUG2Z committed Apr 10, 2024
1 parent 3d0ed4c commit d67f355
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions komorebi/src/process_command.rs
Expand Up @@ -1426,7 +1426,7 @@ impl WindowManager {
Ok(())
}

#[tracing::instrument(skip(self))]
#[tracing::instrument(skip(self), level = "debug")]
fn handle_initial_workspace_rules(
&mut self,
id: &String,
Expand All @@ -1438,7 +1438,7 @@ impl WindowManager {
Ok(())
}

#[tracing::instrument(skip(self))]
#[tracing::instrument(skip(self), level = "debug")]
fn handle_definitive_workspace_rules(
&mut self,
id: &String,
Expand All @@ -1450,7 +1450,7 @@ impl WindowManager {
Ok(())
}

#[tracing::instrument(skip(self))]
#[tracing::instrument(skip(self), level = "debug")]
pub fn handle_workspace_rules(
&mut self,
id: &String,
Expand Down
4 changes: 2 additions & 2 deletions komorebi/src/window_manager.rs
Expand Up @@ -476,7 +476,7 @@ impl WindowManager {
}

#[allow(clippy::too_many_arguments)]
#[tracing::instrument(skip(self))]
#[tracing::instrument(skip(self), level = "debug")]
fn add_window_handle_to_move_based_on_workspace_rule(
&self,
window_title: &String,
Expand Down Expand Up @@ -504,7 +504,7 @@ impl WindowManager {
});
}

#[tracing::instrument(skip(self))]
#[tracing::instrument(skip(self), level = "debug")]
pub fn enforce_workspace_rules(&mut self) -> Result<()> {
let mut to_move = vec![];

Expand Down

0 comments on commit d67f355

Please sign in to comment.