summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-06-28 20:43:48 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-06-28 20:43:48 +0000
commite72b00992859a0dc5e41be35ac6ed4d651b02560 (patch)
tree8dbba23ce5c17a86f04c32b9fe64a23fbea48905
parent50ff1f5fc19f4251cabc8733755e12aba1d673c4 (diff)
Promote local channel optimizing debug messages to verbose 3 messages.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@393219 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/bridging.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/bridging.c b/main/bridging.c
index 92c66ac5c..b44e14d86 100644
--- a/main/bridging.c
+++ b/main/bridging.c
@@ -4688,7 +4688,7 @@ static int check_swap_optimize_out(struct ast_bridge *chan_bridge,
*/
other = ast_bridge_channel_peer(src_bridge_channel);
if (other && other->state == AST_BRIDGE_CHANNEL_STATE_WAIT) {
- ast_debug(1, "Move-swap optimizing %s <-- %s.\n",
+ ast_verb(3, "Move-swap optimizing %s <-- %s.\n",
ast_channel_name(dst_bridge_channel->chan),
ast_channel_name(other->chan));
@@ -4790,7 +4790,7 @@ static int check_merge_optimize_out(struct ast_bridge *chan_bridge,
}
/* BUGBUG Frame hooks on the unreal/local channels need to inhibit optimization here. */
- ast_debug(1, "Merge optimizing %s -- %s out.\n",
+ ast_verb(3, "Merge optimizing %s -- %s out.\n",
ast_channel_name(chan_bridge_channel->chan),
ast_channel_name(peer_bridge_channel->chan));