]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Quieten a debug message.
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Fri, 7 Oct 2022 14:43:28 +0000 (15:43 +0100)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Fri, 7 Oct 2022 14:43:28 +0000 (15:43 +0100)
audio_dummy.c

index 4ec1d29d073db2e3873decd919108e867201caa4..1ea68ff0b9959274cf03f7021187c757e4bc4ffc 100644 (file)
@@ -58,7 +58,7 @@ static int play(__attribute__((unused)) void *buf, __attribute__((unused)) int s
   // sample code using some of the extra information
   if (sample_type == play_samples_are_timed) {
     int64_t lead_time = playtime - get_absolute_time_in_ns();
-    debug(1, "leadtime for frame %u is %" PRId64 " nanoseconds, i.e. %f seconds.", timestamp,
+    debug(2, "leadtime for frame %u is %" PRId64 " nanoseconds, i.e. %f seconds.", timestamp,
           lead_time, 0.000000001 * lead_time);
   }