mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-05-17 09:17:02 +02:00
refactor(logs): reduce noise on info level
This commit is contained in:
@@ -1426,7 +1426,7 @@ impl WindowManager {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip(self))]
|
#[tracing::instrument(skip(self), level = "debug")]
|
||||||
fn handle_initial_workspace_rules(
|
fn handle_initial_workspace_rules(
|
||||||
&mut self,
|
&mut self,
|
||||||
id: &String,
|
id: &String,
|
||||||
@@ -1438,7 +1438,7 @@ impl WindowManager {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip(self))]
|
#[tracing::instrument(skip(self), level = "debug")]
|
||||||
fn handle_definitive_workspace_rules(
|
fn handle_definitive_workspace_rules(
|
||||||
&mut self,
|
&mut self,
|
||||||
id: &String,
|
id: &String,
|
||||||
@@ -1450,7 +1450,7 @@ impl WindowManager {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip(self))]
|
#[tracing::instrument(skip(self), level = "debug")]
|
||||||
pub fn handle_workspace_rules(
|
pub fn handle_workspace_rules(
|
||||||
&mut self,
|
&mut self,
|
||||||
id: &String,
|
id: &String,
|
||||||
|
|||||||
@@ -476,7 +476,7 @@ impl WindowManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[allow(clippy::too_many_arguments)]
|
#[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(
|
fn add_window_handle_to_move_based_on_workspace_rule(
|
||||||
&self,
|
&self,
|
||||||
window_title: &String,
|
window_title: &String,
|
||||||
@@ -504,7 +504,7 @@ impl WindowManager {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip(self))]
|
#[tracing::instrument(skip(self), level = "debug")]
|
||||||
pub fn enforce_workspace_rules(&mut self) -> Result<()> {
|
pub fn enforce_workspace_rules(&mut self) -> Result<()> {
|
||||||
let mut to_move = vec![];
|
let mut to_move = vec![];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user