From 9e99a518028c9847bff9939eeee54caae07244e8 Mon Sep 17 00:00:00 2001
From: Russell Bryant <russell@russellbryant.com>
Date: Tue, 13 Feb 2007 21:33:03 +0000
Subject: [PATCH] Merged revisions 54235 via svnmerge from
 https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r54235 | russell | 2007-02-13 15:31:22 -0600 (Tue, 13 Feb 2007) | 2 lines

Remove a couple of leftover debug messages

........


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

diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 45e343d9ae..fd153f899a 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -5412,14 +5412,10 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req)
 	}
 	
 	if (sin.sin_addr.s_addr && !sendonly) {
-		if (option_debug > 1)
-			ast_log(LOG_DEBUG, "Setting call off HOLD! - %s\n", p->callid);
 		ast_queue_control(p->owner, AST_CONTROL_UNHOLD);
 		/* Activate a re-invite */
 		ast_queue_frame(p->owner, &ast_null_frame);
 	} else if (!sin.sin_addr.s_addr || sendonly) {
-		if (option_debug > 1)
-			ast_log(LOG_DEBUG, "Setting call on HOLD! - %s\n", p->callid);
 		ast_queue_control_data(p->owner, AST_CONTROL_HOLD, 
 				       S_OR(p->mohsuggest, NULL),
 				       !ast_strlen_zero(p->mohsuggest) ? strlen(p->mohsuggest) + 1 : 0);
-- 
GitLab