summaryrefslogtreecommitdiffstats
path: root/libs/binder
diff options
context:
space:
mode:
authorVasu Nori <vnori@google.com>2010-10-26 16:44:44 -0700
committerVasu Nori <vnori@google.com>2010-10-26 16:44:44 -0700
commite6544e4cc906c6b5c4157fccdc928149fc39d7d6 (patch)
tree19893999e30e0fc7ad1d9e7923db08466555b689 /libs/binder
parentf0a896b353e01c7093ba2ee0539f1a7cabef6ec6 (diff)
downloadframeworks_base-e6544e4cc906c6b5c4157fccdc928149fc39d7d6.zip
frameworks_base-e6544e4cc906c6b5c4157fccdc928149fc39d7d6.tar.gz
frameworks_base-e6544e4cc906c6b5c4157fccdc928149fc39d7d6.tar.bz2
convert one of the LOGE to LOG_WINDOW msg to reduce grief
grief from people who think this message is bad news. but in reality, this message is really just an informational message to aid in debugging Change-Id: I1a2ab1666a27adb7d3fd210528b2c5218640d53d
Diffstat (limited to 'libs/binder')
-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 bdd4dd6..fbba281 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);