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
This commit is contained in:
Vasu Nori
2010-06-25 11:09:45 -07:00
parent 96e6bdb033
commit 6188c2746d

View File

@@ -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){