diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-01-22 01:08:36 +0100 |
---|---|---|
committer | Colin Guthrie <cguthrie@mandriva.org> | 2011-01-31 11:36:24 +0000 |
commit | 1250b5d735129c3e04c45484f80f99cdb12f39a1 (patch) | |
tree | 0d99e99ee91ec03d5369701c1deb412b3815b707 /src/pulsecore/log.h | |
parent | a509f10f95448fbbd209f2b4903b7c5441886711 (diff) | |
download | pulseaudio-1250b5d735129c3e04c45484f80f99cdb12f39a1.tar.gz |
ratelimit: fix log levels of log suppression messages
When logging a suppression message do so on the same log level as the
suppressed messages.
Cherry picked by Colin Guthrie from ec5a7857127a1b3b9c5517c4a70a9b2c8aab35ca
with a couple of additional changes due to extra limiting in master
that was not present in stable-queue.
Diffstat (limited to 'src/pulsecore/log.h')
-rw-r--r-- | src/pulsecore/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/log.h b/src/pulsecore/log.h index 2f379f688..1fd38d444 100644 --- a/src/pulsecore/log.h +++ b/src/pulsecore/log.h @@ -135,6 +135,6 @@ LOG_FUNC(error, PA_LOG_ERROR) #define pa_log pa_log_error -pa_bool_t pa_log_ratelimit(void); +pa_bool_t pa_log_ratelimit(pa_log_level_t level); #endif |