Remove debugging cruft

This commit is contained in:
Dirkjan Ochtman 2022-09-01 09:26:45 +02:00
parent ebd913f603
commit 891fc81e9e
2 changed files with 0 additions and 2 deletions

View File

@ -190,7 +190,6 @@ impl Deserializer {
} }
} }
XmlRecord::Close(tag) => { XmlRecord::Close(tag) => {
println!("Close: {}", tag);
if tag == &#name { if tag == &#name {
break; break;
} }

View File

@ -140,7 +140,6 @@ pub fn to_xml(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
where where
W: std::fmt::Write, W: std::fmt::Write,
{ {
println!("ident: {}", #root_name);
let _ = serializer.consume_field_context(); let _ = serializer.consume_field_context();
let mut field_context = instant_xml::FieldContext { let mut field_context = instant_xml::FieldContext {
name: #root_name, name: #root_name,