libril: tag RILC messages to radio log
Change-Id: Ia3234aa933249eb9f383c7e45c3f67b3c0c50634
diff --git a/libril/ril.cpp b/libril/ril.cpp
index 42196f3..382a526 100644
--- a/libril/ril.cpp
+++ b/libril/ril.cpp
@@ -710,7 +710,7 @@
int32_t t;
status_t status;
- ALOGD("dispatchSmsWrite");
+ RLOGD("dispatchSmsWrite");
memset (&args, 0, sizeof(args));
status = p.readInt32(&t);
@@ -763,7 +763,7 @@
int32_t uusPresent;
status_t status;
- ALOGD("dispatchDial");
+ RLOGD("dispatchDial");
memset (&dial, 0, sizeof(dial));
dial.address = strdupReadString(p);
@@ -868,7 +868,7 @@
int size;
status_t status;
- ALOGD("dispatchSIM_IO");
+ RLOGD("dispatchSIM_IO");
memset (&simIO, 0, sizeof(simIO));
// note we only check status at the end
@@ -946,7 +946,7 @@
status_t status;
RIL_SIM_APDU apdu;
- ALOGD("dispatchSIM_APDU");
+ RLOGD("dispatchSIM_APDU");
memset (&apdu, 0, sizeof(RIL_SIM_APDU));
// Note we only check status at the end. Any single failure leads to
@@ -1016,7 +1016,7 @@
int32_t t;
status_t status;
- ALOGD("dispatchCallForward");
+ RLOGD("dispatchCallForward");
memset (&cff, 0, sizeof(cff));
// note we only check status at the end
@@ -1191,7 +1191,7 @@
dispatchCdmaSms(Parcel &p, RequestInfo *pRI) {
RIL_CDMA_SMS_Message rcsm;
- ALOGD("dispatchCdmaSms");
+ RLOGD("dispatchCdmaSms");
if (NO_ERROR != constructCdmaSms(p, pRI, rcsm)) {
goto invalid;
}
@@ -1214,7 +1214,7 @@
RIL_IMS_SMS_Message rism;
RIL_CDMA_SMS_Message rcsm;
- ALOGD("dispatchImsCdmaSms: retry=%d, messageRef=%d", retry, messageRef);
+ RLOGD("dispatchImsCdmaSms: retry=%d, messageRef=%d", retry, messageRef);
if (NO_ERROR != constructCdmaSms(p, pRI, rcsm)) {
goto invalid;
@@ -1248,7 +1248,7 @@
status_t status;
size_t datalen;
char **pStrings;
- ALOGD("dispatchImsGsmSms: retry=%d, messageRef=%d", retry, messageRef);
+ RLOGD("dispatchImsGsmSms: retry=%d, messageRef=%d", retry, messageRef);
status = p.readInt32 (&countStrings);
@@ -1321,7 +1321,7 @@
uint8_t retry;
int32_t messageRef;
- ALOGD("dispatchImsSms");
+ RLOGD("dispatchImsSms");
if (status != NO_ERROR) {
goto invalid;
}
@@ -1360,7 +1360,7 @@
status_t status;
int32_t digitCount;
- ALOGD("dispatchCdmaSmsAck");
+ RLOGD("dispatchCdmaSmsAck");
memset(&rcsa, 0, sizeof(rcsa));
status = p.readInt32(&t);