[svn-commits] kpfleming: branch 1.4 r47433 - /branches/1.4/apps/app_queue.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Fri Nov 10 09:36:50 MST 2006


Author: kpfleming
Date: Fri Nov 10 10:36:49 2006
New Revision: 47433

URL: http://svn.digium.com/view/asterisk?view=rev&rev=47433
Log:
if adding a queue member is LOG_NOTICE, then removing them should be LOG_NOTICE, not LOG_DEBUG

Modified:
    branches/1.4/apps/app_queue.c

Modified: branches/1.4/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_queue.c?view=diff&rev=47433&r1=47432&r2=47433
==============================================================================
--- branches/1.4/apps/app_queue.c (original)
+++ branches/1.4/apps/app_queue.c Fri Nov 10 10:36:49 2006
@@ -3124,7 +3124,7 @@
 	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;



More information about the svn-commits mailing list