Skip to content

Commit 04bd29c

Browse files
committed
Remove debug prints
1 parent 5ffaa02 commit 04bd29c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/imp/mbedtls.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -485,10 +485,7 @@ impl<S: io::Read + io::Write> io::Read for TlsStream<S> {
485485
impl<S: io::Read + io::Write> io::Write for TlsStream<S> {
486486
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
487487
unsafe {
488-
//println!("writing to {:?}", self);
489-
let r = (*self.session).write(buf);
490-
//println!("back from writing to {:?} {:?}", self, r);
491-
r
488+
(*self.session).write(buf)
492489
}
493490
}
494491

0 commit comments

Comments
 (0)