Skip to content

Commit 03fd5ce

Browse files
committed
Remove debug print statements
1 parent bfe9b48 commit 03fd5ce

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

impl/src/lib.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,6 @@ mod util;
2020

2121
#[proc_macro_derive(Error, attributes(display))]
2222
pub fn impl_error_stack(input: TokenStream) -> TokenStream {
23-
println!("Input: {}", input);
24-
2523
let derive_input = parse_macro_input!(input as ErrorStackDeriveInput);
26-
println!("Data: {derive_input:?}");
27-
28-
let output = quote! { #derive_input };
29-
println!("Output: {}", output);
30-
31-
output.into()
24+
quote! { #derive_input }.into()
3225
}

0 commit comments

Comments
 (0)