[pulseaudio-commits] src/modules
Tanu Kaskinen
tanuk at kemper.freedesktop.org
Thu Jun 28 09:26:44 UTC 2018
src/modules/bluetooth/backend-ofono.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 517ee7c92417f1cbadb6c63229af7fb3738e007a
Author: João Paulo Rechi Vita <jprvita at gmail.com>
Date: Tue Jun 26 15:26:10 2018 -0700
bluetooth: backend-ofono: Demote registration failure to info
Now that both backend-native and backend-ofono can coexist and
backend-ofono is always loaded, even on systems without oFono, failing
to register with org.ofono is not necessarily an error.
This lowers the failure message log level from error to info.
diff --git a/src/modules/bluetooth/backend-ofono.c b/src/modules/bluetooth/backend-ofono.c
index 5f427043..1f0efe92 100644
--- a/src/modules/bluetooth/backend-ofono.c
+++ b/src/modules/bluetooth/backend-ofono.c
@@ -434,8 +434,8 @@ static void hf_audio_agent_register_reply(DBusPendingCall *pending, void *userda
pa_assert_se(r = dbus_pending_call_steal_reply(pending));
if (dbus_message_get_type(r) == DBUS_MESSAGE_TYPE_ERROR) {
- pa_log_error("Failed to register as a handsfree audio agent with ofono: %s: %s",
- dbus_message_get_error_name(r), pa_dbus_get_error_message(r));
+ pa_log_info("Failed to register as a handsfree audio agent with ofono: %s: %s",
+ dbus_message_get_error_name(r), pa_dbus_get_error_message(r));
goto finish;
}
More information about the pulseaudio-commits
mailing list