]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Improve debug message for temporary outbound proxies.
authorMark Michelson <mmichelson@digium.com>
Mon, 6 Aug 2012 15:00:08 +0000 (15:00 +0000)
committerMark Michelson <mmichelson@digium.com>
Mon, 6 Aug 2012 15:00:08 +0000 (15:00 +0000)
Thanks to Paul Belanger for pointing this out.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@370797 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index c51628d1d256d2460771fc80b7f4a8ad3f34a919..82121c21897039b8ee76dd6ffb0606d6f49734a6 100644 (file)
@@ -3176,8 +3176,9 @@ static struct sip_proxy *obproxy_get(struct sip_pvt *dialog, struct sip_peer *pe
 {
        if (dialog && dialog->options && dialog->options->outboundproxy) {
                if (sipdebug) {
-                       ast_debug(1, "BLAH\n");
+                       ast_debug(1, "OBPROXY: Applying dialplan set OBproxy to this call\n");
                }
+               append_history(dialog, "OBproxy", "Using dialplan obproxy %s", dialog->options->outboundproxy->name);
                return dialog->options->outboundproxy;
        }
        if (peer && peer->outboundproxy) {