[asterisk-commits] rmudgett: trunk r387108 -	/trunk/channels/chan_dahdi.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Wed May  1 12:15:30 CDT 2013
    
    
  
Author: rmudgett
Date: Wed May  1 12:15:26 2013
New Revision: 387108
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=387108
Log:
Move some annoying chan_dahdi debug messages to level 5.
Modified:
    trunk/channels/chan_dahdi.c
Modified: trunk/channels/chan_dahdi.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_dahdi.c?view=diff&rev=387108&r1=387107&r2=387108
==============================================================================
--- trunk/channels/chan_dahdi.c (original)
+++ trunk/channels/chan_dahdi.c Wed May  1 12:15:26 2013
@@ -9605,15 +9605,15 @@
 		return -1;
 	}
 	if (p->dialing) {
-		ast_debug(1, "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(1, "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) {
-		ast_debug(1, "Dropping frame since I've still got a callerid spill on %s...\n",
+		ast_debug(5, "Dropping frame since I've still got a callerid spill on %s...\n",
 			ast_channel_name(ast));
 		return 0;
 	}
    
    
More information about the asterisk-commits
mailing list