Exclude CRLF when logging sent commands
Android Studio 2.0 beta 3 skips those log messages in its logcat view.
This commit is contained in:
parent
1d52a357a6
commit
2c5bcac66f
1 changed files with 1 additions and 1 deletions
|
@ -644,7 +644,7 @@ class ImapConnection {
|
|||
if (sensitive && !K9MailLib.isDebugSensitive()) {
|
||||
Log.v(LOG_TAG, getLogId() + ">>> [Command Hidden, Enable Sensitive Debug Logging To Show]");
|
||||
} else {
|
||||
Log.v(LOG_TAG, getLogId() + ">>> " + commandToSend);
|
||||
Log.v(LOG_TAG, getLogId() + ">>> " + tag + " " + command);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue