diff options
author | Hung-ying Tyan <tyanh@google.com> | 2010-10-01 07:09:30 +0800 |
---|---|---|
committer | Hung-ying Tyan <tyanh@google.com> | 2010-10-01 07:09:30 +0800 |
commit | b031957d528840df0ccbd28651ecbf3c64d42718 (patch) | |
tree | ad9d2d4f529bab171478d93a69f571f9f0bc8a35 /voip/java/com/android | |
parent | 2cbb56f961e4893a3bf7ded560d4bdbf45eabd01 (diff) | |
download | frameworks_base-b031957d528840df0ccbd28651ecbf3c64d42718.zip frameworks_base-b031957d528840df0ccbd28651ecbf3c64d42718.tar.gz frameworks_base-b031957d528840df0ccbd28651ecbf3c64d42718.tar.bz2 |
SipService: turn off verbose logging
Change-Id: I264662ba17d215d532f58b6ee793e569fe67c334
Diffstat (limited to 'voip/java/com/android')
-rw-r--r-- | voip/java/com/android/server/sip/SipService.java | 3 |
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()) { |