Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/mbe/src/expander/transcriber.rs')
| -rw-r--r-- | crates/mbe/src/expander/transcriber.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/mbe/src/expander/transcriber.rs b/crates/mbe/src/expander/transcriber.rs index 4894e2a0c3..8140f25b06 100644 --- a/crates/mbe/src/expander/transcriber.rs +++ b/crates/mbe/src/expander/transcriber.rs @@ -174,7 +174,11 @@ fn expand_repeat( counter += 1; if counter == limit { - log::warn!("expand_tt in repeat pattern exceed limit => {:#?}\n{:#?}", template, ctx); + tracing::warn!( + "expand_tt in repeat pattern exceed limit => {:#?}\n{:#?}", + template, + ctx + ); return ExpandResult { value: Fragment::Tokens(Subtree::default().into()), err: Some(ExpandError::Other("Expand exceed limit".to_string())), |