Change a debugging message committed with the wrong level
authorTilghman Lesher <tilghman@meg.abyt.es>
Mon, 16 Jan 2006 18:39:01 +0000 (18:39 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Mon, 16 Jan 2006 18:39:01 +0000 (18:39 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8103 65c4cc65-6c06-0410-ace0-fbb531ad65f3

funcs/func_strings.c

index 8a9fed6..315ea6a 100644 (file)
@@ -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 {