summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Vasu Nori <vnori@google.com> 2010-10-26 18:39:27 -0700
committer Android (Google) Code Review <android-gerrit@google.com> 2010-10-26 18:39:27 -0700
commit252ebf36431d77bcb3fe6560a60e9f8c3af976b8 (patch)
treebea6e00e04abce0eca6c113aa5ebf903dce5326b
parent8c026c039f17b783f9145fe7e944d22413590ea0 (diff)
parent82bd26d904f3805d9bfaf475677e4c7a7e120ff1 (diff)
Merge "convert one of the LOGE to LOG_WINDOW msg to reduce grief"
-rw-r--r--libs/binder/CursorWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/CursorWindow.cpp b/libs/binder/CursorWindow.cpp
index bdd4dd6505..fbba28104a 100644
--- a/libs/binder/CursorWindow.cpp
+++ b/libs/binder/CursorWindow.cpp
@@ -115,7 +115,7 @@ field_slot_t * CursorWindow::allocRow()
uint32_t fieldDirOffset = alloc(fieldDirSize);
if (!fieldDirOffset) {
mHeader->numRows--;
- LOGE("The row failed, so back out the new row accounting from allocRowSlot %d", mHeader->numRows);
+ LOG_WINDOW("The row failed, so back out the new row accounting from allocRowSlot %d", mHeader->numRows);
return NULL;
}
field_slot_t * fieldDir = (field_slot_t *)offsetToPtr(fieldDirOffset);