]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
amp: Downgrade level of log message.
authorAndre Noll <maan@systemlinux.org>
Mon, 2 Sep 2013 01:48:05 +0000 (01:48 +0000)
committerAndre Noll <maan@systemlinux.org>
Wed, 11 Sep 2013 22:27:07 +0000 (22:27 +0000)
The scaling factor is often one, so this is not very important
information.  Set the loglevel to INFO.

amp_filter.c

index f62ea8a2f50962182e158ce8da7f18fb4ec1df4f..dddc0a85c3c11f29294074c9b6d565729dfc6e98 100644 (file)
@@ -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);
 }