summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2013-12-10 17:14:17 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2013-12-10 17:14:17 -0800
commit809bf8ba70fef64a1bb844d14591a854c43b460d (patch)
tree12834b09d00b227b50104834a95b37146399ab1b /src
parentb47313a50670fcb30c0a48cd88bbafc194b25c91 (diff)
parent024cf2b6d10c8d82ded234139bac0ec2b79421fc (diff)
downloadpackages_apps_InCallUI-809bf8ba70fef64a1bb844d14591a854c43b460d.tar.gz
packages_apps_InCallUI-809bf8ba70fef64a1bb844d14591a854c43b460d.tar.bz2
packages_apps_InCallUI-809bf8ba70fef64a1bb844d14591a854c43b460d.zip
Merge "Enable InCall UI logging"
Diffstat (limited to 'src')
-rw-r--r--src/com/android/incallui/Log.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/com/android/incallui/Log.java b/src/com/android/incallui/Log.java
index c859e5c6..8d3e0043 100644
--- a/src/com/android/incallui/Log.java
+++ b/src/com/android/incallui/Log.java
@@ -24,9 +24,8 @@ public class Log {
// Generic tag for all In Call logging
private static final String TAG = "InCall";
- public static final boolean DEBUG = android.util.Log.isLoggable(TAG, android.util.Log.DEBUG);
- public static final boolean VERBOSE = android.util.Log.isLoggable(TAG,
- android.util.Log.VERBOSE);
+ public static final boolean DEBUG = true;
+ public static final boolean VERBOSE = true;
public static final String TAG_DELIMETER = " - ";
public static void d(String tag, String msg) {