Skip to content

Android Log All Sqlite Statements

Log all SQLite statements in Android ADB#

Use Android system properties to enable verbose SQLite logs, then restart the runtime.

adb shell setprop log.tag.SQLiteLog V
adb shell setprop log.tag.SQLiteStatements V
adb shell stop
adb shell start

This is useful when maintaining an older Android app and you need to see SQL emitted by the platform SQLite layer in Logcat.