From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Mon, 10 May 2021 08:36:14 +0000 (+0100) Subject: Quieten speed and size debug message X-Git-Tag: 4.0-dev~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2d35cc758614af5829ebf12031a68efbbe9fbe4;p=thirdparty%2Fshairport-sync.git Quieten speed and size debug message --- diff --git a/audio_alsa.c b/audio_alsa.c index d5757bef..f0c10987 100644 --- a/audio_alsa.c +++ b/audio_alsa.c @@ -525,7 +525,7 @@ int actual_open_alsa_device(int do_auto_setup) { } if (ret == 0) { config.output_format = trial_format; - debug(1, "alsa: output format chosen is \"%s\".", + debug(2, "alsa: output format chosen is \"%s\".", sps_format_description_string(config.output_format)); } else { warn("audio_alsa: Could not automatically set the output format for device \"%s\": %s", @@ -566,7 +566,7 @@ int actual_open_alsa_device(int do_auto_setup) { } if (ret == 0) { config.output_rate = actual_sample_rate; - debug(1, "alsa: output speed chosen is %d.", config.output_rate); + debug(2, "alsa: output speed chosen is %d.", config.output_rate); } else { warn("audio_alsa: Could not automatically set the output rate for device \"%s\": %s", alsa_out_dev, snd_strerror(ret));