<div dir="ltr"><div><br></div><div>I always need to apply this patch before putting Asterisk into Production.</div><div><br></div><div>The pauses for specific queues get the reason logged properly, but the pausealls don't.  I rely on pausalls and their reasons for reporting, though I'm trying to get away from it by keeping agents in single queues.</div><div><br></div><div>Can we get this in the pipeline somewhere?  Do I have to submit a patch this tiny through gerrit?</div><div><br></div><div><div><font face="monospace, monospace" size="1">diff a/apps/app_queue.c b/apps/app_queue.c</font></div><div><span style="font-family:monospace,monospace;font-size:x-small">--- a/apps/app_queue.c</span><br></div><div><font face="monospace, monospace" size="1">+++ b/apps/app_queue.c</font></div></div><div><div><font face="monospace, monospace" size="1">@@ -7289,7 +7228,7 @@ static int set_member_paused(const char *queuename, const char *interface, const</font></div><div><font face="monospace, monospace" size="1">                                         * but since this affects all queues, we cannot.</font></div><div><font face="monospace, monospace" size="1">                                         */</font></div><div><font face="monospace, monospace" size="1">                                        ast_queue_log("NONE", "NONE", mem->membername,</font></div><div><font face="monospace, monospace" size="1">-                                               (paused ? "PAUSEALL" : "UNPAUSEALL"), "%s", "");</font></div><div><font face="monospace, monospace" size="1">+                                               (paused ? "PAUSEALL" : "UNPAUSEALL"), "%s", S_OR(reason, ""));</font></div><div><font face="monospace, monospace" size="1">                                }</font></div><div><font face="monospace, monospace" size="1"> </font></div><div><font face="monospace, monospace" size="1">                                set_queue_member_pause(q, mem, reason, paused);</font></div></div><div><br></div></div>