Skip to content

Commit

Permalink
Update turbopack/crates/turbopack-trace-utils/src/filter_layer.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
mischnic authored and sokra committed Dec 7, 2024
1 parent 386304c commit 4f944cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbopack/crates/turbopack-trace-utils/src/filter_layer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl<S: Subscriber> Layer<S> for FilterLayer {
let target = metadata.target().split("::").next().unwrap();
let filter = self.config.get(target).unwrap_or(&self.global_level);
let level = metadata.level();
level <= filter
level <= filter
}

fn max_level_hint(&self) -> Option<LevelFilter> {
Expand Down

0 comments on commit 4f944cb

Please sign in to comment.