[asterisk-commits] trunk - r8103 /trunk/funcs/func_strings.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Mon Jan 16 11:39:02 MST 2006


Author: tilghman
Date: Mon Jan 16 12:39:01 2006
New Revision: 8103

URL: http://svn.digium.com/view/asterisk?rev=8103&view=rev
Log:
Change a debugging message committed with the wrong level

Modified:
    trunk/funcs/func_strings.c

Modified: trunk/funcs/func_strings.c
URL: http://svn.digium.com/view/asterisk/trunk/funcs/func_strings.c?rev=8103&r1=8102&r2=8103&view=diff
==============================================================================
--- trunk/funcs/func_strings.c (original)
+++ trunk/funcs/func_strings.c Mon Jan 16 12:39:01 2006
@@ -196,7 +196,7 @@
 	 * 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 {



More information about the asterisk-commits mailing list