Index: channels/chan_sip.c =================================================================== --- channels/chan_sip.c (revision 51180) +++ channels/chan_sip.c (working copy) @@ -2858,9 +2858,12 @@ struct sip_pvt *cur, *prev = NULL; struct sip_pkt *cp; - if (sip_debug_test_pvt(p) || option_debug > 2) - ast_verbose("Really destroying SIP dialog '%s' Method: %s\n", p->callid, sip_methods[p->method].text); + if (sip_debug_test_pvt(p) && option_debug > 2) + ast_log(LOG_DEBUG, "Really destroying SIP dialog '%s' Method: %s\n", p->callid, sip_methods[p->method].text); + if (sip_debug_test_pvt(p) && option_verbose > 2) + ast_verbose(VERBOSE_PREFIX_3 "Really destroying SIP dialog '%s' Method: %s\n", p->callid, sip_methods[p->method].text); + /* Remove link from peer to subscription of MWI */ if (p->relatedpeer && p->relatedpeer->mwipvt) p->relatedpeer->mwipvt = NULL;