[asterisk-commits] russell: branch 1.4 r81291 - /branches/1.4/channels/chan_iax2.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Aug 28 16:38:26 CDT 2007
Author: russell
Date: Tue Aug 28 16:38:26 2007
New Revision: 81291
URL: http://svn.digium.com/view/asterisk?view=rev&rev=81291
Log:
Change the message about receiving a mini-frame before the first full voice
frame to a DEBUG message.
Modified:
branches/1.4/channels/chan_iax2.c
Modified: branches/1.4/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_iax2.c?view=diff&rev=81291&r1=81290&r2=81291
==============================================================================
--- branches/1.4/channels/chan_iax2.c (original)
+++ branches/1.4/channels/chan_iax2.c Tue Aug 28 16:38:26 2007
@@ -8088,7 +8088,8 @@
if (iaxs[fr->callno]->voiceformat > 0)
f.subclass = iaxs[fr->callno]->voiceformat;
else {
- ast_log(LOG_WARNING, "Received mini frame before first full voice frame\n ");
+ if (option_debug)
+ ast_log(LOG_DEBUG, "Received mini frame before first full voice frame\n");
iax2_vnak(fr->callno);
ast_mutex_unlock(&iaxsl[fr->callno]);
return 1;
More information about the asterisk-commits
mailing list