[svn-commits] rmudgett: branch 1.8 r372628 - /branches/1.8/funcs/func_math.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Sep 7 17:06:32 CDT 2012


Author: rmudgett
Date: Fri Sep  7 17:06:29 2012
New Revision: 372628

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=372628
Log:
Remove annoying unconditional debug message from INC/DEC functions.

(closes issue AST-1001)
Reported by: Guenther Kelleter

Modified:
    branches/1.8/funcs/func_math.c

Modified: branches/1.8/funcs/func_math.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/funcs/func_math.c?view=diff&rev=372628&r1=372627&r2=372628
==============================================================================
--- branches/1.8/funcs/func_math.c (original)
+++ branches/1.8/funcs/func_math.c Fri Sep  7 17:06:29 2012
@@ -421,8 +421,6 @@
 		modify_orig = 1;
 	}
 
-	ast_log(LOG_NOTICE, "The value is now: %d\n", int_value);
-
 	if (snprintf(returnvar, sizeof(returnvar), "%d", int_value) > 0) {
 		pbx_builtin_setvar_helper(chan, data, returnvar);
 		if (modify_orig) {




More information about the svn-commits mailing list