Replace heavy isLoggable call

Log.isLoggable is expensive for frequent operations.  Replace with a
pre-determined check.

Bug 188428246
Test: Built

Change-Id: I77f1980c289b44c8dafd4113771fd814ff382a83
This commit is contained in:
Philip Cuadra
2021-05-17 10:30:13 -07:00
parent dd934371ae
commit 9639ce78ec

View File

@@ -144,7 +144,7 @@ public class SQLiteCursor extends AbstractWindowedCursor {
if (mCount == NO_COUNT) {
mCount = mQuery.fillWindow(mWindow, requiredPos, requiredPos, true);
mCursorWindowCapacity = mWindow.getNumRows();
if (Log.isLoggable(TAG, Log.DEBUG)) {
if (SQLiteDebug.NoPreloadHolder.DEBUG_SQL_LOG) {
Log.d(TAG, "received count(*) from native_fill_window: " + mCount);
}
} else {