From ce10b34ca68c02cd0ed647ef5cea964bbe79232e Mon Sep 17 00:00:00 2001
From: Olle Johansson <oej@edvina.net>
Date: Fri, 9 Jun 2006 09:38:13 +0000
Subject: [PATCH] Enabling and disabling debug messages...

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33173 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 channels/chan_sip.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index d84768cba2..adb78adae8 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -2893,6 +2893,9 @@ static int sip_hangup(struct ast_channel *ast)
 		else 
 			ast_log(LOG_DEBUG, "Hangup call %s, SIP callid %s)\n", ast->name, p->callid);
 	}
+	if (option_debug && ast_test_flag(ast, AST_FLAG_ZOMBIE)) {
+		ast_log(LOG_DEBUG, "Hanging up zombie call. Be scared.\n");
+	}
 
 	ast_mutex_lock(&p->lock);
 	if (option_debug && sipdebug)
@@ -5260,8 +5263,6 @@ static int add_sdp(struct sip_request *resp, struct sip_pvt *p)
 		if (!(capability & x))	/* Codec not requested */
 			continue;
 
-		ast_log(LOG_DEBUG, "--- Checking codec ... %d\n", x);
-
 		if (alreadysent & x)	/* Already added to SDP */
 			continue;
 
-- 
GitLab