From 82bd26d904f3805d9bfaf475677e4c7a7e120ff1 Mon Sep 17 00:00:00 2001 From: Vasu Nori Date: Tue, 26 Oct 2010 16:44:44 -0700 Subject: [PATCH] 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 --- libs/binder/CursorWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/binder/CursorWindow.cpp b/libs/binder/CursorWindow.cpp index bdd4dd650..fbba28104 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);