From 6188c2746d0211985c5a656442c92b591dfdfd2a Mon Sep 17 00:00:00 2001 From: Vasu Nori Date: Fri, 25 Jun 2010 11:09:45 -0700 Subject: [PATCH] remove some not-so-useful-logging the sql statement is already printed if SqlStatements is set to VERBOSE anyway. so no need for this extra logging Change-Id: Id0e6c5acbbbd453ea45f08bcb802213bc22896fc --- core/java/android/database/sqlite/SQLiteQuery.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/java/android/database/sqlite/SQLiteQuery.java b/core/java/android/database/sqlite/SQLiteQuery.java index 905b66b78cd6e..e6011eeafdcbc 100644 --- a/core/java/android/database/sqlite/SQLiteQuery.java +++ b/core/java/android/database/sqlite/SQLiteQuery.java @@ -72,11 +72,6 @@ public class SQLiteQuery extends SQLiteProgram { // is not safe in this situation. the native code will ignore maxRead int numRows = native_fill_window(window, window.getStartPosition(), mOffsetIndex, maxRead, lastPos); - - // Logging - if (SQLiteDebug.DEBUG_SQL_STATEMENTS) { - Log.d(TAG, "fillWindow(): " + mSql); - } mDatabase.logTimeStat(mSql, timeStart); return numRows; } catch (IllegalStateException e){