mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
core: Lower "flist is full" log message level to debug and ratelimit it
This commit is contained in:
parent
12b900858a
commit
851a188cf6
1 changed files with 2 additions and 1 deletions
|
|
@ -116,7 +116,8 @@ int pa_flist_push(pa_flist *l, void *p) {
|
|||
|
||||
elem = stack_pop(&l->empty);
|
||||
if (elem == NULL) {
|
||||
pa_log_warn("flist is full");
|
||||
if (pa_log_ratelimit())
|
||||
pa_log_debug("flist is full (don't worry)");
|
||||
return -1;
|
||||
}
|
||||
pa_atomic_ptr_store(&elem->ptr, p);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue