summaryrefslogtreecommitdiff
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-04-24 14:55:21 +0000
committerRussell Bryant <russell@russellbryant.com>2008-04-24 14:55:21 +0000
commit767fa7a909fab3b0a0fb6e1d987c517253491971 (patch)
treec7e3ced00ec0fe13208c1740fdd10f36064ed0c0 /channels/chan_sip.c
parent76917df5cbf61f6c31e1cd3c73869b97be84eff6 (diff)
Change a verbose message to debug.
(closes issue #12514) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@114604 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_sip.c')
-rw-r--r--channels/chan_sip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 07c9c45f8..637d123ce 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -12987,12 +12987,12 @@ static int dialog_needdestroy(void *dialogobj, void *arg, int flags)
/* We absolutely cannot destroy the rtp struct while a bridge is active or we WILL crash */
if (dialog->rtp && ast_rtp_get_bridged(dialog->rtp)) {
- ast_verbose("Bridge still active. Delaying destroy of SIP dialog '%s' Method: %s\n", dialog->callid, sip_methods[dialog->method].text);
+ ast_debug(2, "Bridge still active. Delaying destroy of SIP dialog '%s' Method: %s\n", dialog->callid, sip_methods[dialog->method].text);
return 0;
}
if (dialog->vrtp && ast_rtp_get_bridged(dialog->vrtp)) {
- ast_verbose("Bridge still active. Delaying destroy of SIP dialog '%s' Method: %s\n", dialog->callid, sip_methods[dialog->method].text);
+ ast_debug(2, "Bridge still active. Delaying destroy of SIP dialog '%s' Method: %s\n", dialog->callid, sip_methods[dialog->method].text);
return 0;
}
/* Check RTP timeouts and kill calls if we have a timeout set and do not get RTP */