From: Tilghman Lesher Date: Mon, 16 Jan 2006 18:39:01 +0000 (+0000) Subject: Change a debugging message committed with the wrong level X-Git-Tag: 1.4.0-beta1~2923 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f28989616d0269b0ef412daf0fdd4dae9f97d29;p=thirdparty%2Fasterisk.git 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 --- 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 {