Skip to content

Commit

Permalink
fix: Trace message about regex pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpovel committed Mar 21, 2024
1 parent ac6d744 commit 6b67dfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scoping/regex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl Scoper for Regex {
let ranges = if has_capture_groups {
trace!(
"Pattern '{}' has capture groups, iterating over matches",
input.escape_debug()
self.pattern
);
let mut ranges = Vec::new();
for cap in self.pattern.captures_iter(input).flatten() {
Expand Down

0 comments on commit 6b67dfe

Please sign in to comment.