diff options
author | Scott Greenwald <greenwald@google.com> | 2013-08-23 20:35:17 -0400 |
---|---|---|
committer | Daniel Sandler <dsandler@android.com> | 2013-08-26 14:59:44 +0000 |
commit | 63410109977a932e342a624243dbd9427e29fe36 (patch) | |
tree | 1423a143ec0c949be605765297fed86b857fab21 /core | |
parent | 61d806c76ad1158f5cfbf3daef87dac81e51fc94 (diff) | |
download | frameworks_base-63410109977a932e342a624243dbd9427e29fe36.zip frameworks_base-63410109977a932e342a624243dbd9427e29fe36.tar.gz frameworks_base-63410109977a932e342a624243dbd9427e29fe36.tar.bz2 |
Change DBG to false to eliminate logcat messages.
DemoContactNotificationScorer was spamming logcat because DBG was
set to true. Also changed TAG to match the class name.
Bug: 10457063
Change-Id: Idca251b5b46d58ab64407e94ed4bec831e880aa4
Diffstat (limited to 'core')
-rw-r--r-- | core/java/com/android/internal/notification/DemoContactNotificationScorer.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/com/android/internal/notification/DemoContactNotificationScorer.java b/core/java/com/android/internal/notification/DemoContactNotificationScorer.java index 62529e9..f484724 100644 --- a/core/java/com/android/internal/notification/DemoContactNotificationScorer.java +++ b/core/java/com/android/internal/notification/DemoContactNotificationScorer.java @@ -41,8 +41,8 @@ import java.util.List; */ public class DemoContactNotificationScorer implements NotificationScorer { - private static final String TAG = "StarredContactScoring"; - private static final boolean DBG = true; + private static final String TAG = "DemoContactNotificationScorer"; + private static final boolean DBG = false; protected static final boolean ENABLE_CONTACT_SCORER = true; private static final String SETTING_ENABLE_SCORER = "contact_scorer_enabled"; |