summaryrefslogtreecommitdiff
path: root/funcs/func_math.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2012-09-07 22:10:33 +0000
committerRichard Mudgett <rmudgett@digium.com>2012-09-07 22:10:33 +0000
commit8b90b7a5654f86351a12ff0d4512cdd789d4ca3c (patch)
tree5e9742a101624875ba245b0f81e55899bb30648e /funcs/func_math.c
parent2a6be9fd0a5ac32a3434e202e65745b967ebaee1 (diff)
Remove annoying unconditional debug message from INC/DEC functions.
(closes issue AST-1001) Reported by: Guenther Kelleter ........ Merged revisions 372628 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 372629 from http://svn.asterisk.org/svn/asterisk/branches/10 ........ Merged revisions 372630 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@372631 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs/func_math.c')
-rw-r--r--funcs/func_math.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/funcs/func_math.c b/funcs/func_math.c
index e27057c57..05321b719 100644
--- a/funcs/func_math.c
+++ b/funcs/func_math.c
@@ -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) {