modules: reduce some errors from warn to info

Some of the more common errors (caused by packet loss, network jitter, ...)
should be reported with INFO unless there is some indication about how
to fix the problem.

Fixes #4559
This commit is contained in:
Wim Taymans 2025-02-18 16:24:52 +01:00
parent 3270bd4552
commit e825a6ae6c
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ static void rtp_audio_process_playback(void *data)
memset(d[0].data, 0, wanted * stride);
if (impl->have_sync) {
impl->have_sync = false;
level = SPA_LOG_LEVEL_WARN;
level = SPA_LOG_LEVEL_INFO;
} else {
level = SPA_LOG_LEVEL_DEBUG;
}

View file

@ -30,7 +30,7 @@ static void vban_audio_process_playback(void *data)
memset(d[0].data, 0, wanted * stride);
if (impl->have_sync) {
impl->have_sync = false;
level = SPA_LOG_LEVEL_WARN;
level = SPA_LOG_LEVEL_INFO;
} else {
level = SPA_LOG_LEVEL_DEBUG;
}