Unnamed repository; edit this file 'description' to name the repository.
Merge pull request #18870 from Veykril/push-vnpsptpolyol
Drop unnecessary tracing::warn
Lukas Wirth 2025-01-07
parent 619af18 · parent bff9bd0 · commit fff6680
-rw-r--r--crates/mbe/src/expander/transcriber.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/crates/mbe/src/expander/transcriber.rs b/crates/mbe/src/expander/transcriber.rs
index 3aacfd120c..9255c5a689 100644
--- a/crates/mbe/src/expander/transcriber.rs
+++ b/crates/mbe/src/expander/transcriber.rs
@@ -462,11 +462,6 @@ fn expand_repeat(
counter += 1;
if counter == limit {
- tracing::warn!(
- "expand_tt in repeat pattern exceed limit => {:#?}\n{:#?}",
- template,
- ctx
- );
err = Some(ExpandError::new(ctx.call_site, ExpandErrorKind::LimitExceeded));
break;
}