Remove verbose logging

Bug: 7302014 CryptKeeper logs PII data

Change-Id: I4dec3a827a5b6880b1c0995b8adebf34315c4773
This commit is contained in:
Vikram Aggarwal
2012-10-08 09:11:06 -07:00
parent df54b39694
commit c3ebad20f2

View File

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