Răsfoiți Sursa

remove unnecessary print

Dastan-glitch 3 ani în urmă
părinte
comite
f98829369d
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/net/transport/nym.rs

+ 1 - 1
src/net/transport/nym.rs

@@ -118,7 +118,7 @@ impl Transport for NymTransport {
             "nym" | "nym+tls" => {}
             x => return Err(Error::UnsupportedTransport(x.to_string())),
         }
-        println!("using nym transport=======================================================");
+
         Ok(Box::pin(self.do_dial(url)))
     }