Drop debug print that slipped in in a previous PR
authorMatt Corallo <git@bluematt.me>
Wed, 22 Sep 2021 06:04:24 +0000 (06:04 +0000)
committerMatt Corallo <git@bluematt.me>
Thu, 23 Sep 2021 17:36:08 +0000 (17:36 +0000)
c-bindings-gen/src/main.rs

index ce69294928af16714f3e7b645d34cbc2faa9f510..5ac8380819d9ad51605775d78381e54f223035da 100644 (file)
@@ -163,7 +163,6 @@ fn write_trait_impl_field_assign<W: std::io::Write>(w: &mut W, trait_path: &str,
 
 /// Write out the impl block for a defined trait struct which has a supertrait
 fn do_write_impl_trait<W: std::io::Write>(w: &mut W, trait_path: &str, _trait_name: &syn::Ident, for_obj: &str) {
-eprintln!("{}", trait_path);
        match trait_path {
                "lightning::util::ser::Writeable" => {
                        writeln!(w, "impl {} for {} {{", trait_path, for_obj).unwrap();