diff options
author | Chiao Cheng <chiaocheng@google.com> | 2013-10-09 16:33:13 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-10-09 16:33:13 -0700 |
commit | 0677fb458c3a4f1eb67fbdf8b0f2062b1afe489a (patch) | |
tree | 931ac0e6b053ebddd8cef9f6eafb78bd78540ff2 | |
parent | e41fcac5874a588276179e099d9032348da563f5 (diff) | |
parent | c81b06e81c97728d481ed8266121a9ed3c72bdb6 (diff) |
am ab13872f: am 11970029: Merge "Turn down logging level." into klp-dev
* commit 'ab13872f41241f9429681628bae15291520fbe61':
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 = " - "; |