Skip to content

Commit

Permalink
chore: clean up trace level instrumentation on matcher_is_defined fun…
Browse files Browse the repository at this point in the history
…ction
  • Loading branch information
rholshausen committed Feb 7, 2024
1 parent 4b9aeb2 commit 8be1bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/pact_matching/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ impl Default for CoreMatchingContext {
}

impl MatchingContext for CoreMatchingContext {
#[instrument(level = "trace")]
#[instrument(level = "trace", ret, skip_all, fields(path, matchers = ?self.matchers))]
fn matcher_is_defined(&self, path: &DocPath) -> bool {
let path = path.to_vec();
let path_slice = path.iter().map(|p| p.as_str()).collect_vec();
Expand Down

0 comments on commit 8be1bf3

Please sign in to comment.