From 1c12b35b710ff503d3ccfb969f65a63ecc5652f0 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 27 Dec 2013 22:39:11 +0000 Subject: [PATCH] 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. --- afh_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]); } -- 2.39.2