aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-16 19:20:50 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-16 19:20:50 +0000
commite132feb5d2a998d37441d5442cbb722254e59539 (patch)
treec79bcfdb53bf89dcf7917803a81a05065efe5e7d
parentb852e3bf01e79fe557ab050bd48ceaeb217d1f88 (diff)
Adding check of option_debug
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@27436 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_channelredirect.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/app_channelredirect.c b/apps/app_channelredirect.c
index 4817ec222..805640723 100644
--- a/apps/app_channelredirect.c
+++ b/apps/app_channelredirect.c
@@ -105,7 +105,8 @@ static int asyncgoto_exec(struct ast_channel *chan, void *data)
goto chanquit;
}
- ast_log(LOG_DEBUG, "Attempting async goto (%s) to %s|%s|%d\n", args.channel, S_OR(context, chan2->context), S_OR(exten, chan2->exten), prio);
+ if (option_debug > 1)
+ ast_log(LOG_DEBUG, "Attempting async goto (%s) to %s|%s|%d\n", args.channel, S_OR(context, chan2->context), S_OR(exten, chan2->exten), prio);
if (ast_async_goto_if_exists(chan2, S_OR(context, chan2->context), S_OR(exten, chan2->exten), prio))
ast_log(LOG_WARNING, "%s failed for %s\n", app, args.channel);