From: Andre Noll Date: Fri, 27 Dec 2013 22:39:11 +0000 (+0000) Subject: afh loglevel adjustments. X-Git-Tag: v0.5.4~1^2~4 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=1c12b35b710ff503d3ccfb969f65a63ecc5652f0;p=paraslash.git afh loglevel adjustments. The list of supported audio formats is kind of important, so increase the loglevel of the corresponding message. On the other hand, all the "initializing xxx handler" messages do not really deserve the NOTICE loglevel, so downgrade those to INFO. --- diff --git a/afh_common.c b/afh_common.c index 914d1a32..fc0df417 100644 --- a/afh_common.c +++ b/afh_common.c @@ -118,9 +118,9 @@ void afh_init(void) { int i; - PARA_INFO_LOG("supported audio formats: %s\n", AUDIO_FORMAT_HANDLERS); + PARA_NOTICE_LOG("supported audio formats: %s\n", AUDIO_FORMAT_HANDLERS); FOR_EACH_AUDIO_FORMAT(i) { - PARA_NOTICE_LOG("initializing %s handler\n", + PARA_INFO_LOG("initializing %s handler\n", audio_format_name(i)); afl[i].init(&afl[i]); }