From: Kevin P. Fleming Date: Fri, 10 Nov 2006 16:36:49 +0000 (+0000) Subject: if adding a queue member is LOG_NOTICE, then removing them should be LOG_NOTICE,... X-Git-Tag: 1.4.0-beta4~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb2930ecb444111c3908efe89492b5c69f970090;p=thirdparty%2Fasterisk.git if adding a queue member is LOG_NOTICE, then removing them should be LOG_NOTICE, not LOG_DEBUG git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@47433 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index f938533567..0a41d2b9db 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -3124,7 +3124,7 @@ static int rqm_exec(struct ast_channel *chan, void *data) switch (remove_from_queue(args.queuename, args.interface)) { case RES_OKAY: ast_queue_log(args.queuename, chan->uniqueid, args.interface, "REMOVEMEMBER", "%s", ""); - ast_log(LOG_DEBUG, "Removed interface '%s' from queue '%s'\n", args.interface, args.queuename); + ast_log(LOG_NOTICE, "Removed interface '%s' from queue '%s'\n", args.interface, args.queuename); pbx_builtin_setvar_helper(chan, "RQMSTATUS", "REMOVED"); res = 0; break;