aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-09 13:00:21 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-09 13:00:21 +0000
commit80e0b574dc3288bda5b137b0c69cc221dc828fce (patch)
treecc5b0771a64091712e28056e48766d33d049eb62
parent6a77867317e4476a69f80ad0c54f8d43d44876a7 (diff)
Fix GotoIf logging level (bug #2396)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3753 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xpbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx.c b/pbx.c
index af8580179..443b7e990 100755
--- a/pbx.c
+++ b/pbx.c
@@ -4769,7 +4769,7 @@ static int pbx_builtin_gotoif(struct ast_channel *chan, void *data)
branch = pbx_checkcondition(condition) ? branch1 : branch2;
if ((branch==NULL) || ast_strlen_zero(branch)) {
- ast_log(LOG_NOTICE, "Not taking any branch\n");
+ ast_log(LOG_DEBUG, "Not taking any branch\n");
return(0);
}