mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-02 00:25:10 -04:00
Comment out redundant logging of IMAP commands
Each IMAP command was logged 3 times in normal operation. It seriously clouds the logs and makes it much harder to read and debug ongoing connections
This commit is contained in:
parent
7a543b45b1
commit
c359b2c6bf
@ -2668,12 +2668,12 @@ public class ImapStore extends Store
|
||||
}
|
||||
|
||||
|
||||
if (K9.DEBUG)
|
||||
Log.v(K9.LOG_TAG, "Sending IMAP command " + commandToLog + " on connection " + getLogId());
|
||||
//if (K9.DEBUG)
|
||||
// Log.v(K9.LOG_TAG, "Sending IMAP command " + commandToLog + " on connection " + getLogId());
|
||||
|
||||
String tag = sendCommand(command, sensitive);
|
||||
if (K9.DEBUG)
|
||||
Log.v(K9.LOG_TAG, "Sent IMAP command " + commandToLog + " with tag " + tag + " for " + getLogId());
|
||||
//if (K9.DEBUG)
|
||||
// Log.v(K9.LOG_TAG, "Sent IMAP command " + commandToLog + " with tag " + tag + " for " + getLogId());
|
||||
|
||||
ArrayList<ImapResponse> responses = new ArrayList<ImapResponse>();
|
||||
ImapResponse response;
|
||||
|
Loading…
Reference in New Issue
Block a user