]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix noisy message when briding channels
authorPaul Belanger <paul.belanger@polybeacon.com>
Mon, 15 Aug 2011 15:21:16 +0000 (15:21 +0000)
committerPaul Belanger <paul.belanger@polybeacon.com>
Mon, 15 Aug 2011 15:21:16 +0000 (15:21 +0000)
(closes issue ASTERISK-18270)
Reported by: Federico Alves

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

main/rtp_engine.c

index eb1c06ddb0734b9800d7a53f4270ec88e7506cf7..34bf3eafbc749ac6cf228735ccbb2c968c0e235a 100644 (file)
@@ -1336,10 +1336,10 @@ enum ast_bridge_result ast_rtp_instance_bridge(struct ast_channel *c0, struct as
 
        /* Depending on the end result for bridging either do a local bridge or remote bridge */
        if (audio_glue0_res == AST_RTP_GLUE_RESULT_LOCAL || audio_glue1_res == AST_RTP_GLUE_RESULT_LOCAL) {
-               ast_verbose(VERBOSE_PREFIX_3 "Locally bridging %s and %s\n", c0->name, c1->name);
+               ast_verb(3, "Locally bridging %s and %s\n", c0->name, c1->name);
                res = local_bridge_loop(c0, c1, instance0, instance1, timeoutms, flags, fo, rc, c0->tech_pvt, c1->tech_pvt);
        } else {
-               ast_verbose(VERBOSE_PREFIX_3 "Remotely bridging %s and %s\n", c0->name, c1->name);
+               ast_verb(3, "Remotely bridging %s and %s\n", c0->name, c1->name);
                res = remote_bridge_loop(c0, c1, instance0, instance1, vinstance0, vinstance1,
                                tinstance0, tinstance1, glue0, glue1, codec0, codec1, timeoutms, flags,
                                fo, rc, c0->tech_pvt, c1->tech_pvt);