]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
if adding a queue member is LOG_NOTICE, then removing them should be LOG_NOTICE,...
authorKevin P. Fleming <kpfleming@digium.com>
Fri, 10 Nov 2006 16:36:49 +0000 (16:36 +0000)
committerKevin P. Fleming <kpfleming@digium.com>
Fri, 10 Nov 2006 16:36:49 +0000 (16:36 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@47433 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_queue.c

index f938533567701af405d42b2bc75bbf86eb2dffd4..0a41d2b9dbd5e6571b5e5653f821ca7c3e24fd79 100644 (file)
@@ -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;