From af55c6f48b3fcb9e88c74d59c59920276e6de899 Mon Sep 17 00:00:00 2001 From: Daniel Applebaum Date: Thu, 20 May 2010 03:38:16 +0000 Subject: [PATCH] We don't need to log the content of the map each time we add to it. --- src/com/fsck/k9/mail/store/ImapStore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/fsck/k9/mail/store/ImapStore.java b/src/com/fsck/k9/mail/store/ImapStore.java index e26a93458..40db86a04 100644 --- a/src/com/fsck/k9/mail/store/ImapStore.java +++ b/src/com/fsck/k9/mail/store/ImapStore.java @@ -1165,7 +1165,7 @@ public class ImapStore extends Store msgSeqUidMap.put(msgSeq, uid); if (K9.DEBUG) { - Log.v(K9.LOG_TAG, "Stored uid '" + uid + "' for msgSeq " + msgSeq + " into map " + msgSeqUidMap.toString()); + Log.v(K9.LOG_TAG, "Stored uid '" + uid + "' for msgSeq " + msgSeq + " into map " /*+ msgSeqUidMap.toString() */); } } catch (Exception e)