diff options
author | San Mehat <san@google.com> | 2010-03-25 09:31:42 -0700 |
---|---|---|
committer | San Mehat <san@google.com> | 2010-03-25 09:31:42 -0700 |
commit | 7e8529a8b528fd30586aa037f15a31b29582c537 (patch) | |
tree | 850922c096dc45230da1047dc3372df428f21965 /libsysutils/src/SocketClient.cpp | |
parent | c741f22d8533226ce60903649a7a57b3f05a65af (diff) |
system/core: Switch libsysutils & sched_policy LOG -> SLOG
Change-Id: Id74c6895a8012c5915f2e259339101844de7c085
Signed-off-by: San Mehat <san@google.com>
Diffstat (limited to 'libsysutils/src/SocketClient.cpp')
-rw-r--r-- | libsysutils/src/SocketClient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsysutils/src/SocketClient.cpp b/libsysutils/src/SocketClient.cpp index 857ed4d10..e9ae23a90 100644 --- a/libsysutils/src/SocketClient.cpp +++ b/libsysutils/src/SocketClient.cpp @@ -41,11 +41,11 @@ int SocketClient::sendMsg(const char *msg) { pthread_mutex_lock(&mWriteMutex); while(brtw) { if ((rc = write(mSocket,p, brtw)) < 0) { - LOGW("Unable to send msg '%s' (%s)", msg, strerror(errno)); + SLOGW("Unable to send msg '%s' (%s)", msg, strerror(errno)); pthread_mutex_unlock(&mWriteMutex); return -1; } else if (!rc) { - LOGW("0 length write :("); + SLOGW("0 length write :("); errno = EIO; pthread_mutex_unlock(&mWriteMutex); return -1; |