diff options
| author | 2011-10-30 13:56:11 -0700 | |
|---|---|---|
| committer | 2011-10-30 13:56:11 -0700 | |
| commit | 1b47eac28cb18ec3ecdc8907d674ce576f63f1d0 (patch) | |
| tree | 81d4dc3c7d85ce941903920bc19aa39ca4eca268 | |
| parent | 3186645df42a78c134f6cf61dc8ec51169969b4d (diff) | |
Revert "Improve the slow query instrumentation."
This reverts commit 89101cd9d9b5c1a6ff1ed85eba0613ca4c4802e2.
| -rw-r--r-- | libs/binder/CursorWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/CursorWindow.cpp b/libs/binder/CursorWindow.cpp index 60681c4207..1b85a71ca8 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) { - LOGW("Window is full: requested allocation %d bytes, " + LOGE("Window is full: requested allocation %d bytes, " "free space %d bytes, window size %d bytes", size, freeSpace(), mSize); return 0; |