diff options
author | Chiao Cheng <chiaocheng@google.com> | 2013-10-09 16:30:23 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-10-09 16:30:23 -0700 |
commit | c81b06e81c97728d481ed8266121a9ed3c72bdb6 (patch) | |
tree | 672f7962a2e072722c97ee97bf26c3e0a8a79273 | |
parent | 3606962c711a1c946099775a8536ef44d24eb509 (diff) | |
parent | 5bb008c17ffc1d4785b715d5d75056f6f1b3fd5e (diff) |
am 11970029: Merge "Turn down logging level." into klp-dev
* commit '11970029e109d24cb79fda48755c82bbcdf4889e':
Turn down logging level.
-rw-r--r-- | InCallUI/src/com/android/incallui/Log.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/InCallUI/src/com/android/incallui/Log.java b/InCallUI/src/com/android/incallui/Log.java index 35cb37024..c859e5c6a 100644 --- a/InCallUI/src/com/android/incallui/Log.java +++ b/InCallUI/src/com/android/incallui/Log.java @@ -24,8 +24,7 @@ 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) - || (System.getProperty("ro.build.type", "").equals("userdebug")); + 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 String TAG_DELIMETER = " - "; |