audio: Improve error message for RILD connection
We need to make it more prominent so people recognize it and fix their
connection.
Change-Id: I36218ac130351b053f7fda2319d797885ac0930e
diff --git a/audio/ril_interface.c b/audio/ril_interface.c
index 179e120..e9c7e72 100644
--- a/audio/ril_interface.c
+++ b/audio/ril_interface.c
@@ -89,7 +89,8 @@
rc = Connect_RILD(ril->client);
if (rc != RIL_CLIENT_ERR_SUCCESS) {
- ALOGE("Connect_RILD() failed");
+ ALOGE("FATAL: Failed to connect to RILD: %s",
+ strerror(errno));
return -1;
}