From 3d07cc8112d693922b176c9dc6bf0fbc6b58a02c Mon Sep 17 00:00:00 2001 From: Ed Catmur Date: Tue, 26 Aug 2008 23:19:43 +0200 Subject: alsa_error_handler should note source of errors When an error gets passed up from alsa-lib via alsa_error_handler, it's unclear the source of the error. alsa_error_handler should note that the error came from alsa-lib. (Closes #341) --- src/modules/alsa-util.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/modules/alsa-util.c') diff --git a/src/modules/alsa-util.c b/src/modules/alsa-util.c index e8c7e146..3599553a 100644 --- a/src/modules/alsa-util.c +++ b/src/modules/alsa-util.c @@ -896,12 +896,17 @@ void pa_alsa_dump_status(snd_pcm_t *pcm) { static void alsa_error_handler(const char *file, int line, const char *function, int err, const char *fmt,...) { va_list ap; + char *alsa_file; + + alsa_file = pa_sprintf_malloc("(alsa-lib)%s", file); va_start(ap, fmt); - pa_log_levelv_meta(PA_LOG_WARN, file, line, function, fmt, ap); + pa_log_levelv_meta(PA_LOG_INFO, alsa_file, line, function, fmt, ap); va_end(ap); + + pa_xfree(alsa_file); } static pa_atomic_t n_error_handler_installed = PA_ATOMIC_INIT(0); -- cgit