module-rt: Don't warn when rtkit is disabled

Change warning to info level for the message that is logged when regular
realtime isn't available and rtkit fallback is disabled in config.
This commit is contained in:
Jonas Holmberg 2025-02-05 10:36:48 +01:00
parent 4d502cb470
commit c68b20e59b

View file

@ -1128,7 +1128,7 @@ int pipewire__module_init(struct pw_impl_module *module, const char *args)
if (!check_realtime_privileges(impl)) {
if (!can_use_rtkit) {
res = -ENOTSUP;
pw_log_warn("regular realtime scheduling not available"
pw_log_info("regular realtime scheduling not available"
" (Portal/RTKit fallback disabled)");
goto error;
}