summaryrefslogtreecommitdiffstats
path: root/voip/java/com/android
diff options
context:
space:
mode:
Diffstat (limited to 'voip/java/com/android')
-rw-r--r--voip/java/com/android/server/sip/SipService.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/voip/java/com/android/server/sip/SipService.java b/voip/java/com/android/server/sip/SipService.java
index aff1439..405dff8 100644
--- a/voip/java/com/android/server/sip/SipService.java
+++ b/voip/java/com/android/server/sip/SipService.java
@@ -66,6 +66,7 @@ import javax.sip.SipException;
*/
public final class SipService extends ISipService.Stub {
private static final String TAG = "SipService";
+ private static final boolean DEBUGV = false;
private static final boolean DEBUG = true;
private static final boolean DEBUG_TIMER = DEBUG && false;
private static final int EXPIRY_TIME = 3600;
@@ -597,7 +598,7 @@ public final class SipService extends ISipService.Stub {
if (notCurrentSession(session)) return;
session = session.duplicate();
- if (DEBUG) Log.d(TAG, "~~~ keepalive");
+ if (DEBUGV) Log.v(TAG, "~~~ keepalive");
mTimer.cancel(this);
session.sendKeepAlive();
if (session.isReRegisterRequired()) {