Log.w shouldn't be wrapped in an "if debug" statement.

This commit is contained in:
Jesse Vincent 2010-01-03 20:34:22 +00:00
parent 6a8ea924c9
commit 483655fa20
1 changed files with 1 additions and 2 deletions

View File

@ -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<ImapResponse> iter = responses.iterator();
while (iter.hasNext())
{