We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfe9b48 commit 03fd5ceCopy full SHA for 03fd5ce
1 file changed
impl/src/lib.rs
@@ -20,13 +20,6 @@ mod util;
20
21
#[proc_macro_derive(Error, attributes(display))]
22
pub fn impl_error_stack(input: TokenStream) -> TokenStream {
23
- println!("Input: {}", input);
24
-
25
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()
+ quote! { #derive_input }.into()
32
}
0 commit comments