[svn-commits] oej: branch 1.4 r248268 - /branches/1.4/apps/app_meetme.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Feb 22 07:52:38 CST 2010


Author: oej
Date: Mon Feb 22 07:52:34 2010
New Revision: 248268

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=248268
Log:
Don't log to debug unless debug is turned on

Modified:
    branches/1.4/apps/app_meetme.c

Modified: branches/1.4/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/apps/app_meetme.c?view=diff&rev=248268&r1=248267&r2=248268
==============================================================================
--- branches/1.4/apps/app_meetme.c (original)
+++ branches/1.4/apps/app_meetme.c Mon Feb 22 07:52:34 2010
@@ -1847,7 +1847,9 @@
 		close(fd);
 		goto outrun;
 	}
-	ast_log(LOG_DEBUG, "Placed channel %s in %s conf %d\n", chan->name, dahdi_chan_name, conf->zapconf);
+	if (option_debug) {
+		ast_log(LOG_DEBUG, "Placed channel %s in %s conf %d\n", chan->name, dahdi_chan_name, conf->zapconf);
+	}
 
 	if (!sent_event) {
 		manager_event(EVENT_FLAG_CALL, "MeetmeJoin", 




More information about the svn-commits mailing list