aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-05 18:08:18 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-05 18:08:18 +0000
commitb38bfdcd60701b236fc7d58f69eac3e38c6b945e (patch)
tree4cba60948694eb3683d21abe955368aa99a51af2
parentcda33c11a8c30832c9ae4bd8967d9be281ff833c (diff)
Change superfluous messages to DEBUG and remove dead code
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37046 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_queue.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 2153e04be..8c6b132d2 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -3071,12 +3071,12 @@ static int rqm_exec(struct ast_channel *chan, void *data)
switch (remove_from_queue(args.queuename, args.interface)) {
case RES_OKAY:
- ast_log(LOG_NOTICE, "Removed interface '%s' from queue '%s'\n", args.interface, args.queuename);
+ ast_log(LOG_DEBUG, "Removed interface '%s' from queue '%s'\n", args.interface, args.queuename);
pbx_builtin_setvar_helper(chan, "RQMSTATUS", "REMOVED");
res = 0;
break;
case RES_EXISTS:
- ast_log(LOG_WARNING, "Unable to remove interface '%s' from queue '%s': Not there\n", args.interface, args.queuename);
+ ast_log(LOG_DEBUG, "Unable to remove interface '%s' from queue '%s': Not there\n", args.interface, args.queuename);
if (priority_jump || ast_opt_priority_jumping)
ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101);
pbx_builtin_setvar_helper(chan, "RQMSTATUS", "NOTINQUEUE");
@@ -3087,9 +3087,6 @@ static int rqm_exec(struct ast_channel *chan, void *data)
pbx_builtin_setvar_helper(chan, "RQMSTATUS", "NOSUCHQUEUE");
res = 0;
break;
- case RES_OUTOFMEMORY:
- ast_log(LOG_ERROR, "Out of memory\n");
- break;
}
LOCAL_USER_REMOVE(lu);