summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorVasu Nori <vnori@google.com>2010-10-05 16:53:24 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-10-05 16:53:24 -0700
commit572ce01e9e0b72a3eb9f033ae32e15c3f36b8673 (patch)
tree04bc8ec75d025d9689f7ad59f6700b347851b266 /libs
parentd688b0cc4084610ea9cee96330872ff36da8f28c (diff)
parentb7e2c783af9753da65d08924a622560829ba2dbb (diff)
downloadframeworks_base-572ce01e9e0b72a3eb9f033ae32e15c3f36b8673.zip
frameworks_base-572ce01e9e0b72a3eb9f033ae32e15c3f36b8673.tar.gz
frameworks_base-572ce01e9e0b72a3eb9f033ae32e15c3f36b8673.tar.bz2
Merge "turn off some useless messages"
Diffstat (limited to 'libs')
-rw-r--r--libs/binder/CursorWindow.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/binder/CursorWindow.cpp b/libs/binder/CursorWindow.cpp
index 20b27c9..bdd4dd6 100644
--- a/libs/binder/CursorWindow.cpp
+++ b/libs/binder/CursorWindow.cpp
@@ -141,10 +141,12 @@ uint32_t CursorWindow::alloc(size_t requestedSize, bool aligned)
size = requestedSize + padding;
if (size > freeSpace()) {
- LOGE("need to grow: mSize = %d, size = %d, freeSpace() = %d, numRows = %d", mSize, size, freeSpace(), mHeader->numRows);
+ LOGV("need to grow: mSize = %d, size = %d, freeSpace() = %d, numRows = %d", mSize, size,
+ freeSpace(), mHeader->numRows);
// Only grow the window if the first row doesn't fit
if (mHeader->numRows > 1) {
-LOGE("not growing since there are already %d row(s), max size %d", mHeader->numRows, mMaxSize);
+ LOGV("not growing since there are already %d row(s), max size %d", mHeader->numRows,
+ mMaxSize);
return 0;
}