1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-02 00:25:10 -04:00

We don't need to log the content of the map each time we add to it.

This commit is contained in:
Daniel Applebaum 2010-05-20 03:38:16 +00:00
parent 44da2e1fe6
commit af55c6f48b

View File

@ -1165,7 +1165,7 @@ public class ImapStore extends Store
msgSeqUidMap.put(msgSeq, uid); msgSeqUidMap.put(msgSeq, uid);
if (K9.DEBUG) 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) catch (Exception e)