From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Fri, 7 Oct 2022 14:43:28 +0000 (+0100) Subject: Quieten a debug message. X-Git-Tag: 4.1-rc2~1^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0e99ed5ada5445018cda4e1b951e4e8a419352b;p=thirdparty%2Fshairport-sync.git Quieten a debug message. --- diff --git a/audio_dummy.c b/audio_dummy.c index 4ec1d29d..1ea68ff0 100644 --- a/audio_dummy.c +++ b/audio_dummy.c @@ -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); }