Skip to content

Commit

Permalink
chore: remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
w-lfchen committed Oct 20, 2024
1 parent 791abb6 commit 0d7db4b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions crates/eww/src/state/scope_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,6 @@ impl ScopeGraph {
let listener = Rc::new(listener);
for required_var in &listener.needed_variables {
scope.listeners.entry(required_var.clone()).or_default().push(listener.clone());
// debug print: if this number grows indefinetly, something is wrong, otherwise this shows that there is activity
// TODO: remove
log::info!("{:?} listeners for {required_var}", scope.listeners.get(&required_var.clone()).map(|x| x.len()));
}

let required_variables = self.lookup_variables_in_scope(scope_index, &listener.needed_variables)?;
Expand Down

0 comments on commit 0d7db4b

Please sign in to comment.