[asterisk-commits] rmudgett: branch 13 r429805 - in /branches/13: ./ channels/ res/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Dec 18 16:38:13 CST 2014


Author: rmudgett
Date: Thu Dec 18 16:38:07 2014
New Revision: 429805

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=429805
Log:
chan_dahdi.c, res_rtp_asterisk.c: Change some spammy debug messages to level 5.

ASTERISK-24337 #close
Reported by: Rusty Newton
........

Merged revisions 429804 from http://svn.asterisk.org/svn/asterisk/branches/11

Modified:
    branches/13/   (props changed)
    branches/13/channels/chan_dahdi.c
    branches/13/res/res_rtp_asterisk.c

Propchange: branches/13/
------------------------------------------------------------------------------
--- branch-11-merged (original)
+++ branch-11-merged Thu Dec 18 16:38:07 2014
@@ -1,1 +1,1 @@
-/branches/11:1-429517,429539,429632,429783
+/branches/11:1-429517,429539,429632,429783,429804

Modified: branches/13/channels/chan_dahdi.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/channels/chan_dahdi.c?view=diff&rev=429805&r1=429804&r2=429805
==============================================================================
--- branches/13/channels/chan_dahdi.c (original)
+++ branches/13/channels/chan_dahdi.c Thu Dec 18 16:38:07 2014
@@ -8787,11 +8787,13 @@
 		return 0;
 	}
 	if (p->dialing) {
-		ast_debug(5, "Dropping frame since I'm still dialing on %s...\n",ast_channel_name(ast));
+		ast_debug(5, "Dropping frame since I'm still dialing on %s...\n",
+			ast_channel_name(ast));
 		return 0;
 	}
 	if (!p->owner) {
-		ast_debug(5, "Dropping frame since there is no active owner on %s...\n",ast_channel_name(ast));
+		ast_debug(5, "Dropping frame since there is no active owner on %s...\n",
+			ast_channel_name(ast));
 		return 0;
 	}
 	if (p->cidspill) {

Modified: branches/13/res/res_rtp_asterisk.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/res/res_rtp_asterisk.c?view=diff&rev=429805&r1=429804&r2=429805
==============================================================================
--- branches/13/res/res_rtp_asterisk.c (original)
+++ branches/13/res/res_rtp_asterisk.c Thu Dec 18 16:38:07 2014
@@ -4178,7 +4178,7 @@
 	ast_rtp_instance_get_remote_address(instance1, &remote_address);
 
 	if (ast_sockaddr_isnull(&remote_address)) {
-		ast_debug(1, "Remote address is null, most likely RTP has been stopped\n");
+		ast_debug(5, "Remote address is null, most likely RTP has been stopped\n");
 		return 0;
 	}
 




More information about the asterisk-commits mailing list