From 9ed29aafd4e870bbfe81cb9c6700816581dd772c Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 29 Oct 2019 10:10:07 +0100 Subject: [PATCH] jack: warn -> debug for thread functions --- src/pipewire-jack.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pipewire-jack.c b/src/pipewire-jack.c index 92c85cd94..736f65725 100644 --- a/src/pipewire-jack.c +++ b/src/pipewire-jack.c @@ -4101,9 +4101,9 @@ int jack_client_stop_thread(jack_client_t* client, jack_native_thread_t thread) if (thread == (jack_native_thread_t)NULL) return -1; - pw_log_warn("join thread %lu", thread); + pw_log_debug("join thread %lu", thread); pthread_join(thread, &status); - pw_log_warn("stopped thread %lu", thread); + pw_log_debug("stopped thread %lu", thread); return 0; } @@ -4115,11 +4115,11 @@ int jack_client_kill_thread(jack_client_t* client, jack_native_thread_t thread) if (thread == (jack_native_thread_t)NULL) return -1; - pw_log_warn("cancel thread %lu", thread); + pw_log_debug("cancel thread %lu", thread); pthread_cancel(thread); - pw_log_warn("join thread %lu", thread); + pw_log_debug("join thread %lu", thread); pthread_join(thread, &status); - pw_log_warn("stopped thread %lu", thread); + pw_log_debug("stopped thread %lu", thread); return 0; }