From 7b369c91074a1dabe87a721105e814da4259c78a Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 12 Jun 2022 12:41:05 +0000 Subject: [PATCH] Remove unused DCC_IMAP_DEBUG variable --- README.md | 3 --- src/lib.rs | 3 --- 2 files changed, 6 deletions(-) diff --git a/README.md b/README.md index c100cead1..4f0ec28ec 100644 --- a/README.md +++ b/README.md @@ -102,9 +102,6 @@ $ cargo build -p deltachat_ffi --release ## Debugging environment variables -- `DCC_IMAP_DEBUG`: if set IMAP protocol commands and responses will be - printed - - `DCC_MIME_DEBUG`: if set outgoing and incoming message will be printed - `RUST_LOG=repl=info,async_imap=trace,async_smtp=trace`: enable IMAP and diff --git a/src/lib.rs b/src/lib.rs index 5d36c6e7a..9427323a9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -104,8 +104,5 @@ pub mod accounts; /// if set imap/incoming and smtp/outgoing MIME messages will be printed pub const DCC_MIME_DEBUG: &str = "DCC_MIME_DEBUG"; -/// if set IMAP protocol commands and responses will be printed -pub const DCC_IMAP_DEBUG: &str = "DCC_IMAP_DEBUG"; - #[cfg(test)] mod test_utils;