From e45d77584b37759e305ec0e2546d840ab083a236 Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Thu, 8 Aug 2019 21:09:18 +0100 Subject: [PATCH] repair a dodgy find and replace --- src/connect.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connect.rs b/src/connect.rs index 9c7c37e..846e31e 100644 --- a/src/connect.rs +++ b/src/connect.rs @@ -496,7 +496,7 @@ mod native_tls_async { /// and both the server and the client are ready for receiving and sending /// data. Bytes read from a `TlsStream` are decrypted from `S` and bytes written /// to a `TlsStream` are encrypted when passing through to `S`. - #[derive(log::debug)] + #[derive(Debug)] pub struct TlsStream { inner: native_tls::TlsStream, }