summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2012-08-06 15:18:18 +0000
committerMark Michelson <mmichelson@digium.com>2012-08-06 15:18:18 +0000
commite46db5d9435f5fac954b255e54d6c06d206212a6 (patch)
tree913d0f58510ed53347cc44ba95653f6f4742c499 /channels
parent9f0127f087109db116943ca7ba911f5e89036cfb (diff)
Improve debug message for temporary outbound proxies.
Thanks to Paul Belanger for pointing this out. ........ Merged revisions 370797 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 370798 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@370801 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 77401d66e..7afe46f1a 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -3318,8 +3318,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) {