]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
don't be verbose if no need
authorChristian Richter <christian.richter@beronet.com>
Mon, 2 Apr 2007 07:25:54 +0000 (07:25 +0000)
committerChristian Richter <christian.richter@beronet.com>
Mon, 2 Apr 2007 07:25:54 +0000 (07:25 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@59624 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_misdn.c

index 48c8063e68d866092a8f01400b5ac2822cce7009..ec38f47bf7775421a93a19e8fd2d9b9fbd6b2da9 100644 (file)
@@ -1755,11 +1755,11 @@ static int misdn_call(struct ast_channel *ast, char *dest, int timeout)
                misdn_cfg_get( 0, MISDN_GEN_BRIDGING, &bridging, sizeof(int));
                if (bridging && ch->other_ch) {
 #ifdef MISDN_1_2
-                       chan_misdn_log(0, port, "Disabling EC (aka Pipeline) on both Sides\n");
+                       chan_misdn_log(1, port, "Disabling EC (aka Pipeline) on both Sides\n");
                        *ch->bc->pipeline=0;
                        *ch->other_ch->bc->pipeline=0;
 #else
-                       chan_misdn_log(0, port, "Disabling EC on both Sides\n");
+                       chan_misdn_log(1, port, "Disabling EC on both Sides\n");
                        ch->bc->ec_enable=0;
                        ch->other_ch->bc->ec_enable=0;
 #endif