mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
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:
parent
3270bd4552
commit
e825a6ae6c
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue