From: Christian Richter Date: Mon, 2 Apr 2007 07:25:54 +0000 (+0000) Subject: don't be verbose if no need X-Git-Tag: 1.2.18~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e299df7a757b6f321f81874c84d88ba85ee7a220;p=thirdparty%2Fasterisk.git don't be verbose if no need git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@59624 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_misdn.c b/channels/chan_misdn.c index 48c8063e68..ec38f47bf7 100644 --- a/channels/chan_misdn.c +++ b/channels/chan_misdn.c @@ -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