am 844a6b3c: Turn off additional debug.

Merge commit '844a6b3ccaff1ad1443ad985e4527b733ce97c0e' into gingerbread-plus-aosp

* commit '844a6b3ccaff1ad1443ad985e4527b733ce97c0e':
  Turn off additional debug.
This commit is contained in:
John Wang
2010-10-12 11:55:31 -07:00
committed by Android Git Automerger

View File

@@ -56,7 +56,7 @@ public final class CallManager {
private static final String LOG_TAG ="CallManager"; private static final String LOG_TAG ="CallManager";
private static final boolean DBG = true; 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_DISCONNECT = 100;
private static final int EVENT_PRECISE_CALL_STATE_CHANGED = 101; 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 (basePhone != null && !mPhones.contains(basePhone)) {
if (VDBG) { if (DBG) {
Log.d(LOG_TAG, "registerPhone(" + Log.d(LOG_TAG, "registerPhone(" +
phone.getPhoneName() + " " + phone + ")"); phone.getPhoneName() + " " + phone + ")");
} }
@@ -319,7 +319,7 @@ public final class CallManager {
if (basePhone != null && mPhones.contains(basePhone)) { if (basePhone != null && mPhones.contains(basePhone)) {
if (VDBG) { if (DBG) {
Log.d(LOG_TAG, "unregisterPhone(" + Log.d(LOG_TAG, "unregisterPhone(" +
phone.getPhoneName() + " " + phone + ")"); phone.getPhoneName() + " " + phone + ")");
} }
@@ -487,7 +487,7 @@ public final class CallManager {
boolean hasBgCall = ! (activePhone.getBackgroundCall().isIdle()); boolean hasBgCall = ! (activePhone.getBackgroundCall().isIdle());
boolean sameChannel = (activePhone == ringingPhone); boolean sameChannel = (activePhone == ringingPhone);
if (DBG) { if (VDBG) {
Log.d(LOG_TAG, "hasBgCall: "+ hasBgCall + "sameChannel:" + sameChannel); Log.d(LOG_TAG, "hasBgCall: "+ hasBgCall + "sameChannel:" + sameChannel);
} }