From 63410109977a932e342a624243dbd9427e29fe36 Mon Sep 17 00:00:00 2001 From: Scott Greenwald Date: Fri, 23 Aug 2013 20:35:17 -0400 Subject: [PATCH] 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 --- .../internal/notification/DemoContactNotificationScorer.java | 4 ++-- 1 file 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 62529e9408f93..f484724470231 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";