]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Quieten speed and size debug message
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Mon, 10 May 2021 08:36:14 +0000 (09:36 +0100)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Mon, 10 May 2021 08:36:14 +0000 (09:36 +0100)
audio_alsa.c

index d5757befd550e0078efff3a19508304b995c270f..f0c109876895e03716a611a1972f42fa4c29ec7e 100644 (file)
@@ -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));