From d8234a6f34b50c1be4f3d1a40a361598ed9a5da4 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 24 Apr 2008 14:56:44 +0000 Subject: [PATCH] Merged revisions 114604 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r114604 | russell | 2008-04-24 09:55:21 -0500 (Thu, 24 Apr 2008) | 3 lines Change a verbose message to debug. (closes issue #12514) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@114605 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index e3fa3100f8..4550013049 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -4238,12 +4238,12 @@ static int __sip_destroy(struct sip_pvt *p, int lockowner, int lockdialoglist) /* We absolutely cannot destroy the rtp struct while a bridge is active or we WILL crash */ if (p->rtp && ast_rtp_get_bridged(p->rtp)) { - ast_verbose("Bridge still active. Delaying destroy of SIP dialog '%s' Method: %s\n", p->callid, sip_methods[p->method].text); + ast_debug(2, "Bridge still active. Delaying destroy of SIP dialog '%s' Method: %s\n", p->callid, sip_methods[p->method].text); return -1; } if (p->vrtp && ast_rtp_get_bridged(p->vrtp)) { - ast_verbose("Bridge still active. Delaying destroy of SIP dialog '%s' Method: %s\n", p->callid, sip_methods[p->method].text); + ast_debug(2, "Bridge still active. Delaying destroy of SIP dialog '%s' Method: %s\n", p->callid, sip_methods[p->method].text); return -1; }