]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
afh loglevel adjustments.
authorAndre Noll <maan@systemlinux.org>
Fri, 27 Dec 2013 22:39:11 +0000 (22:39 +0000)
committerAndre Noll <maan@tuebingen.mpg.de>
Sun, 18 Jan 2015 14:40:47 +0000 (15:40 +0100)
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.

afh_common.c

index 914d1a321af35bae395cc365b14537e86991b42d..fc0df417fbc8405a21359ecd389075322f96f979 100644 (file)
@@ -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]);
        }