From ae8b56c0d17a97aff0b98e6405c7cc9811bbbc3d Mon Sep 17 00:00:00 2001 From: Steve Block Date: Thu, 5 Jan 2012 22:25:38 +0000 Subject: Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) DO NOT MERGE Bug: 5449033 Change-Id: I1e070511b6a538e9f1c94657356437a457d58882 --- libcutils/properties.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libcutils/properties.c') diff --git a/libcutils/properties.c b/libcutils/properties.c index 98dbf509..e29d2616 100644 --- a/libcutils/properties.c +++ b/libcutils/properties.c @@ -99,7 +99,7 @@ static int connectToServer(const char* fileName) sock = socket(AF_UNIX, SOCK_STREAM, 0); if (sock < 0) { - LOGW("UNIX domain socket create failed (errno=%d)\n", errno); + ALOGW("UNIX domain socket create failed (errno=%d)\n", errno); return -1; } @@ -110,7 +110,7 @@ static int connectToServer(const char* fileName) if (cc < 0) { // ENOENT means socket file doesn't exist // ECONNREFUSED means socket exists but nobody is listening - //LOGW("AF_UNIX connect failed for '%s': %s\n", + //ALOGW("AF_UNIX connect failed for '%s': %s\n", // fileName, strerror(errno)); close(sock); return -1; @@ -128,7 +128,7 @@ static void init(void) gPropFd = connectToServer(SYSTEM_PROPERTY_PIPE_NAME); if (gPropFd < 0) { - //LOGW("not connected to system property server\n"); + //ALOGW("not connected to system property server\n"); } else { //ALOGV("Connected to system property server\n"); } -- cgit v1.2.3