OSDN Git Service

Remove verbose logging
authorVikram Aggarwal <viki@google.com>
Mon, 8 Oct 2012 16:11:06 +0000 (09:11 -0700)
committerVikram Aggarwal <viki@google.com>
Mon, 8 Oct 2012 16:13:07 +0000 (09:13 -0700)
Bug: 7302014 CryptKeeper logs PII data

Change-Id: I4dec3a827a5b6880b1c0995b8adebf34315c4773

src/com/android/settings/CryptKeeper.java

index 5872a05..75d905d 100644 (file)
@@ -245,7 +245,6 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList
      */
     private void notifyUser() {
         if (mNotificationCountdown > 0) {
-            Log.d(TAG, "Counting down to notify user..." + mNotificationCountdown);
             --mNotificationCountdown;
         } else if (mAudioManager != null) {
             Log.d(TAG, "Notifying user that we are waiting for input...");
@@ -724,7 +723,6 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList
      * Listen to key events so we can disable sounds when we get a keyinput in EditText.
      */
     private void delayAudioNotification() {
-        Log.d(TAG, "User entering password: delay audio notification");
         mNotificationCountdown = 20;
     }