summaryrefslogtreecommitdiff
path: root/funcs
diff options
context:
space:
mode:
authorGeorge Joseph <george.joseph@fairview5.com>2014-08-18 20:19:42 +0000
committerGeorge Joseph <george.joseph@fairview5.com>2014-08-18 20:19:42 +0000
commita8fc671c1387d0a47c90ba72e1b2e45a211480ed (patch)
tree01d30bdb46f0e91eb46ab7d281502250bf0cd10a /funcs
parent7eef81c370f82013dd5b5a83894acffb589721cb (diff)
func_config: Change 'Not Found' message from ERROR to DEBUG
When you call the CONFIG dialplan function with the name of a variable that doesn't exist in the target context you get an ERROR. This does nothing but clutter up the logs with messages that may be perfectly acceptable. Just because a variable wasn't in the context doesn't mean it's an error. Maybei t's optional or just needs to be defaulted or ignored. This patch changes the log level from ERROR to DEBUG. If a dialplan developer wants to debug their dialplan they still canby setting the console debug level as needed. Tested by: George Joseph Review: https://reviewboard.asterisk.org/r/3919/ ........ Merged revisions 421327 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 421328 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 421329 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@421337 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/func_config.c b/funcs/func_config.c
index d45ad2c82..1123b0b84 100644
--- a/funcs/func_config.c
+++ b/funcs/func_config.c
@@ -165,7 +165,7 @@ static int config_function_read(struct ast_channel *chan, const char *cmd, char
}
if (!(val = ast_variable_retrieve(cfg, args.category, args.variable))) {
- ast_log(LOG_ERROR, "'%s' not found in [%s] of '%s'\n", args.variable,
+ ast_debug(1, "'%s' not found in [%s] of '%s'\n", args.variable,
args.category, args.filename);
AST_RWLIST_UNLOCK(&configs);
return -1;