We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872e01c commit a162566Copy full SHA for a162566
src/filter/opt.rs
@@ -46,7 +46,7 @@ pub fn simplify(filter: Filter) -> Filter {
46
if let Some(f) = SIMPLIFIED.lock().unwrap().get(&filter) {
47
return *f;
48
}
49
- rs_tracing::trace_scoped!("simplify", "spec": spec(filter));
+ rs_tracing::trace_scoped!("simplify", "spec": spec2(&to_op(filter)));
50
let original = filter;
51
let result = to_filter(match to_op(filter) {
52
Op::Compose(filters) => {
0 commit comments