From 831ab5db85e6d3f5edacb6d9776e3eb9a2dec4db Mon Sep 17 00:00:00 2001 From: Mersad Jelacic Date: Wed, 24 Jan 2024 14:43:45 +0100 Subject: [PATCH] thread: Change warning to info Change warning to info in impl_acquire_rt() and impl_drop_rt(). --- src/pipewire/thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipewire/thread.c b/src/pipewire/thread.c index 4f753a9f9..f7b8c60ad 100644 --- a/src/pipewire/thread.c +++ b/src/pipewire/thread.c @@ -102,13 +102,13 @@ static int impl_get_rt_range(void *object, const struct spa_dict *props, } static int impl_acquire_rt(void *object, struct spa_thread *thread, int priority) { - pw_log_warn("acquire_rt thread:%p prio:%d not implemented", thread, priority); + pw_log_info("acquire_rt thread:%p prio:%d not implemented", thread, priority); return -ENOTSUP; } static int impl_drop_rt(void *object, struct spa_thread *thread) { - pw_log_warn("drop_rt thread:%p not implemented", thread); + pw_log_info("drop_rt thread:%p not implemented", thread); return -ENOTSUP; }