ao_pipewire: reduce message level of unsuccessful connection

As ao_pipewire is probed first if a user does not have PipeWire running
they will see a scary warning message even if another AO afterwards is
probed fine.
Tone down the error message so as not to confuse users.
This commit is contained in:
Thomas Weißschuh
2023-02-03 04:09:51 +00:00
committed by Philip Langdale
parent 469f7af210
commit c2c36c0d57

View File

@@ -461,8 +461,8 @@ static int pipewire_init_boilerplate(struct ao *ao)
pw_properties_new(PW_KEY_REMOTE_NAME, p->options.remote, NULL),
0);
if (!p->core) {
MP_WARN(ao, "Could not connect to context '%s': %s\n",
p->options.remote, strerror(errno));
MP_VERBOSE(ao, "Could not connect to context '%s': %s\n",
p->options.remote, strerror(errno));
pw_context_destroy(context);
goto error;
}