From 7f28989616d0269b0ef412daf0fdd4dae9f97d29 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Mon, 16 Jan 2006 18:39:01 +0000 Subject: [PATCH] Change a debugging message committed with the wrong level git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8103 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- funcs/func_strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs/func_strings.c b/funcs/func_strings.c index 8a9fed62b5..315ea6ab59 100644 --- a/funcs/func_strings.c +++ b/funcs/func_strings.c @@ -196,7 +196,7 @@ static void builtin_function_array(struct ast_channel *chan, char *cmd, char *da * want them to be surprised by the result. Hence, we prefer commas as the * delimiter, but we'll fall back to vertical bars if commas aren't found. */ - ast_log(LOG_ERROR, "arrary (%s=%s)\n", var, value2); + ast_log(LOG_DEBUG, "array (%s=%s)\n", var, value2); if (strchr(var, ',')) { AST_NONSTANDARD_APP_ARGS(arg1, var, ','); } else {