summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Dan Sandler <dsandler@android.com> 2014-04-24 15:54:16 -0400
committer Dan Sandler <dsandler@android.com> 2014-04-24 15:54:16 -0400
commitf68448ef618528b5e754c76aba09994018e86765 (patch)
tree53239676f4eeedcab1e2d89a58b75881b128af5e
parent6dd5a1d348900f4ebf10c96f0af7166219729024 (diff)
Remove chatty log message.
Change-Id: If0acc3be413d86c87a2a8c68fdcf94bada7e0903
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java
index 2ea5addd2986..8f3c0787289e 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java
@@ -737,8 +737,9 @@ public abstract class BaseStatusBar extends SystemUI implements
return false;
}
- Log.v(TAG, "publicNotification: "
- + sbn.getNotification().publicVersion);
+ if (DEBUG) {
+ Log.v(TAG, "publicNotification: " + sbn.getNotification().publicVersion);
+ }
Notification publicNotification = sbn.getNotification().publicVersion;