summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
author Jeff Brown <jeffbrown@google.com> 2011-10-28 18:21:05 -0700
committer Android (Google) Code Review <android-gerrit@google.com> 2011-10-28 18:21:05 -0700
commit2d280f754e32e556407df05d977cfabdfff1c070 (patch)
tree4f534ac6b0b1f8cfe6c9dab8f194db67a94ae2a8 /libs
parent2cc1c5d067736f221554be593c2ba2c96390f847 (diff)
parent89101cd9d9b5c1a6ff1ed85eba0613ca4c4802e2 (diff)
Merge "Improve the slow query instrumentation." into ics-mr0
Diffstat (limited to 'libs')
-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 1b85a71ca8ff..60681c420715 100644
--- a/libs/binder/CursorWindow.cpp
+++ b/libs/binder/CursorWindow.cpp
@@ -211,7 +211,7 @@ uint32_t CursorWindow::alloc(size_t size, bool aligned) {
uint32_t offset = mHeader->freeOffset + padding;
uint32_t nextFreeOffset = offset + size;
if (nextFreeOffset > mSize) {
- LOGE("Window is full: requested allocation %d bytes, "
+ LOGW("Window is full: requested allocation %d bytes, "
"free space %d bytes, window size %d bytes",
size, freeSpace(), mSize);
return 0;