]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Remove annoying unconditional debug message from INC/DEC functions.
authorRichard Mudgett <rmudgett@digium.com>
Fri, 7 Sep 2012 22:07:59 +0000 (22:07 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Fri, 7 Sep 2012 22:07:59 +0000 (22:07 +0000)
(closes issue AST-1001)
Reported by: Guenther Kelleter
........

Merged revisions 372628 from http://svn.asterisk.org/svn/asterisk/branches/1.8

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@372629 65c4cc65-6c06-0410-ace0-fbb531ad65f3

funcs/func_math.c

index e27057c57e90cd31f3d4fd86dbc32174215ee919..05321b719ca3379170f8d090d2649c7e770d056c 100644 (file)
@@ -421,8 +421,6 @@ static int crement_function_read(struct ast_channel *chan, const char *cmd,
                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) {