summaryrefslogtreecommitdiffstats
path: root/rild
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 20:47:51 +0000
committerSteve Block <steveblock@google.com>2012-01-18 11:35:01 +0000
commit20cd1140431e2d4013fe3be529e14e45d973bec4 (patch)
treeaf2a568410642fcea0f582ff6d27c950a5e84221 /rild
parent24975f5438333c47c7588c89979cd48fc46f4949 (diff)
downloadandroid_hardware_ril-20cd1140431e2d4013fe3be529e14e45d973bec4.tar.gz
android_hardware_ril-20cd1140431e2d4013fe3be529e14e45d973bec4.tar.bz2
android_hardware_ril-20cd1140431e2d4013fe3be529e14e45d973bec4.zip
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF)
Change-Id: I9a87ab49edcee3281e419366ced3cbbb5ead8bc2
Diffstat (limited to 'rild')
-rw-r--r--rild/rild.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/rild/rild.c b/rild/rild.c
index 18ff671..9a1975e 100644
--- a/rild/rild.c
+++ b/rild/rild.c
@@ -148,7 +148,7 @@ int main(int argc, char **argv)
int fd = open("/proc/cmdline",O_RDONLY);
if (fd < 0) {
- LOGD("could not open /proc/cmdline:%s", strerror(errno));
+ ALOGD("could not open /proc/cmdline:%s", strerror(errno));
goto OpenLib;
}
@@ -157,7 +157,7 @@ int main(int argc, char **argv)
while (len == -1 && errno == EINTR);
if (len < 0) {
- LOGD("could not read /proc/cmdline:%s", strerror(errno));
+ ALOGD("could not read /proc/cmdline:%s", strerror(errno));
close(fd);
goto OpenLib;
}
@@ -193,7 +193,7 @@ int main(int argc, char **argv)
done = 1;
break;
}
- LOGD("could not connect to %s socket: %s",
+ ALOGD("could not connect to %s socket: %s",
QEMUD_SOCKET_NAME, strerror(errno));
if (--tries == 0)
break;
@@ -235,7 +235,7 @@ int main(int argc, char **argv)
hasLibArgs = 1;
rilLibPath = REFERENCE_RIL_PATH;
- LOGD("overriding with %s %s", arg_overrides[1], arg_overrides[2]);
+ ALOGD("overriding with %s %s", arg_overrides[1], arg_overrides[2]);
}
}
OpenLib: