base-manager: log kernel event handling failures

Don't just return the error to the client, we want this info in the
daemon log as well.
This commit is contained in:
Aleksander Morgado
2020-11-09 00:43:33 +01:00
parent 37b3771ef5
commit 06f75500db

View File

@@ -889,9 +889,10 @@ report_kernel_event_auth_ready (MMAuthProvider *authp,
handle_kernel_event (ctx->self, properties, &error);
out:
if (error)
if (error) {
mm_obj_warn (ctx->self, "couldn't handle kernel event: %s", error->message);
g_dbus_method_invocation_take_error (ctx->invocation, error);
else
} else
mm_gdbus_org_freedesktop_modem_manager1_complete_report_kernel_event (
MM_GDBUS_ORG_FREEDESKTOP_MODEM_MANAGER1 (ctx->self),
ctx->invocation);