From: Andre Noll Date: Mon, 2 Sep 2013 01:48:05 +0000 (+0000) Subject: amp: Downgrade level of log message. X-Git-Tag: v0.5.1~15 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=790b15bcd3a3650f8971dc3a1b75f38291357187 amp: Downgrade level of log message. The scaling factor is often one, so this is not very important information. Set the loglevel to INFO. --- diff --git a/amp_filter.c b/amp_filter.c index f62ea8a2..dddc0a85 100644 --- a/amp_filter.c +++ b/amp_filter.c @@ -58,7 +58,7 @@ static void amp_open(struct filter_node *fn) sscanf(stat_item_values[SI_AMPLIFICATION], "%u", &pad->amp); else pad->amp = conf->amp_arg; - PARA_NOTICE_LOG("amplification: %u (scaling factor: %1.2f)\n", + PARA_INFO_LOG("amplification: %u (scaling factor: %1.2f)\n", pad->amp, pad->amp / 64.0 + 1.0); }