summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Wang <johnwang@google.com>2010-10-12 11:32:24 -0700
committerJohn Wang <johnwang@google.com>2010-10-12 11:32:24 -0700
commit844a6b3ccaff1ad1443ad985e4527b733ce97c0e (patch)
tree30c7c526d300219ee51047f161f81a95485ae348
parentf348502c70ae2f3c90bf75d8c4b4402d5e8e4d59 (diff)
downloadframeworks_base-844a6b3ccaff1ad1443ad985e4527b733ce97c0e.zip
frameworks_base-844a6b3ccaff1ad1443ad985e4527b733ce97c0e.tar.gz
frameworks_base-844a6b3ccaff1ad1443ad985e4527b733ce97c0e.tar.bz2
Turn off additional debug.
Bug:3038245 Change-Id: If3c894511b4bbfd0d3e95b51aeca299edbbcf55d
-rw-r--r--telephony/java/com/android/internal/telephony/CallManager.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/telephony/java/com/android/internal/telephony/CallManager.java b/telephony/java/com/android/internal/telephony/CallManager.java
index b09df82..3f0ec0a 100644
--- a/telephony/java/com/android/internal/telephony/CallManager.java
+++ b/telephony/java/com/android/internal/telephony/CallManager.java
@@ -56,7 +56,7 @@ public final class CallManager {
private static final String LOG_TAG ="CallManager";
private static final boolean DBG = true;
- private static final boolean VDBG = true;
+ private static final boolean VDBG = false;
private static final int EVENT_DISCONNECT = 100;
private static final int EVENT_PRECISE_CALL_STATE_CHANGED = 101;
@@ -292,7 +292,7 @@ public final class CallManager {
if (basePhone != null && !mPhones.contains(basePhone)) {
- if (VDBG) {
+ if (DBG) {
Log.d(LOG_TAG, "registerPhone(" +
phone.getPhoneName() + " " + phone + ")");
}
@@ -319,7 +319,7 @@ public final class CallManager {
if (basePhone != null && mPhones.contains(basePhone)) {
- if (VDBG) {
+ if (DBG) {
Log.d(LOG_TAG, "unregisterPhone(" +
phone.getPhoneName() + " " + phone + ")");
}
@@ -487,7 +487,7 @@ public final class CallManager {
boolean hasBgCall = ! (activePhone.getBackgroundCall().isIdle());
boolean sameChannel = (activePhone == ringingPhone);
- if (DBG) {
+ if (VDBG) {
Log.d(LOG_TAG, "hasBgCall: "+ hasBgCall + "sameChannel:" + sameChannel);
}