From 851a188cf6b7cbf3f40313c0c47481bab12ab21b Mon Sep 17 00:00:00 2001 From: Jyri Sarha Date: Fri, 26 Nov 2010 18:38:23 +0200 Subject: core: Lower "flist is full" log message level to debug and ratelimit it --- src/pulsecore/flist.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/pulsecore/flist.c b/src/pulsecore/flist.c index 8e8c3cda..71feaa93 100644 --- a/src/pulsecore/flist.c +++ b/src/pulsecore/flist.c @@ -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); -- cgit