thread: Change warning to info

Change warning to info in impl_acquire_rt() and impl_drop_rt().
This commit is contained in:
Mersad Jelacic 2024-01-24 14:43:45 +01:00 committed by Wim Taymans
parent 13511e9295
commit 5f531e7fe6

View file

@ -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;
}