bug #3057952: remove and turn off verbose logging done for this bug.

Change-Id: I85c14abfccb35d3d4f9c80cba14642f5cb2fb1fc
diff --git a/src/com/android/mms/LogTag.java b/src/com/android/mms/LogTag.java
index e52908f..b865489 100644
--- a/src/com/android/mms/LogTag.java
+++ b/src/com/android/mms/LogTag.java
@@ -29,9 +29,9 @@
     public static final String TRANSACTION = "Mms:transaction";
     public static final String APP = "Mms:app";
     public static final String THREAD_CACHE = "Mms:threadcache";
-    public static final boolean VERBOSE = true;
+    public static final boolean VERBOSE = false;
     public static final boolean SEVERE_WARNING = true;                  // Leave this true
-    private static final boolean SHOW_SEVERE_WARNING_DIALOG = true;    // Set to false before ship
+    private static final boolean SHOW_SEVERE_WARNING_DIALOG = false;    // Set to false before ship
 
     private static String prettyArray(String[] array) {
         if (array.length == 0) {
diff --git a/src/com/android/mms/ui/ComposeMessageActivity.java b/src/com/android/mms/ui/ComposeMessageActivity.java
index c790c55..44ca7f6 100644
--- a/src/com/android/mms/ui/ComposeMessageActivity.java
+++ b/src/com/android/mms/ui/ComposeMessageActivity.java
@@ -3048,10 +3048,6 @@
             return;
         }
 
-        if (Log.isLoggable(LogTag.APP, Log.VERBOSE)) {
-            log("call WorkingMessage.saveDraft");
-        }
-
         mWorkingMessage.saveDraft();
 
         if (mToastForDraftSave) {
diff --git a/src/com/android/mms/ui/ConversationListAdapter.java b/src/com/android/mms/ui/ConversationListAdapter.java
index 6ba000e..226f9ee 100644
--- a/src/com/android/mms/ui/ConversationListAdapter.java
+++ b/src/com/android/mms/ui/ConversationListAdapter.java
@@ -55,11 +55,6 @@
 
         ConversationListItem headerView = (ConversationListItem) view;
         Conversation conv = Conversation.from(context, cursor);
-
-        if (LogTag.VERBOSE) {
-            Log.d(LogTag.APP, "[CLA] bindView view=" + view + ", conv=" + conv);
-        }
-
         ConversationListItemData ch = new ConversationListItemData(context, conv);
         headerView.bind(context, ch);
     }