From 483655fa20ffdbb3807df97b7ef37fc85d14c0b8 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sun, 3 Jan 2010 20:34:22 +0000 Subject: [PATCH] Log.w shouldn't be wrapped in an "if debug" statement. --- src/com/fsck/k9/mail/store/ImapStore.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/fsck/k9/mail/store/ImapStore.java b/src/com/fsck/k9/mail/store/ImapStore.java index d990b19a2..ec055401d 100644 --- a/src/com/fsck/k9/mail/store/ImapStore.java +++ b/src/com/fsck/k9/mail/store/ImapStore.java @@ -2240,8 +2240,7 @@ public class ImapStore extends Store if (response.mTag != null && response.mTag.equals(tag) == false) { - if (K9.DEBUG) - Log.w(K9.LOG_TAG, "After sending tag " + tag + ", got tag response from previous command " + response + " for " + getLogId()); + Log.w(K9.LOG_TAG, "After sending tag " + tag + ", got tag response from previous command " + response + " for " + getLogId()); Iterator iter = responses.iterator(); while (iter.hasNext()) {