Remove a forgotten println (#3767)

This commit is contained in:
Mees Delzenne 2024-03-26 15:48:39 +01:00 committed by GitHub
parent 390b2496fe
commit 5f1b55f7d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -114,8 +114,6 @@ macro_rules! enter_object_recursion {
#[macro_export]
macro_rules! enter_query_recursion {
($name:ident = $this:expr => { $($t:tt)* }) => {{
println!("{} = {}",$this.query_recursion, std::backtrace::Backtrace::force_capture());
if $this.query_recursion == 0 {
return Err($crate::syn::v2::parser::ParseError::new(
$crate::syn::v2::parser::ParseErrorKind::ExceededQueryDepthLimit,