install Porthole
fun <T : RoomDatabase> RoomDatabase.Builder<T>.installPorthole(delegate: SupportSQLiteOpenHelper.Factory = FrameworkSQLiteOpenHelperFactory(), captureBindArgs: Boolean = true, maxArgChars: Int = 64): RoomDatabase.Builder<T>(source)
Parameters
capture Bind Args
record the values bound to ? placeholders. On by default, because a write with its values stripped out tells you almost nothing. Turn it off if the database holds data you would rather not have in a trace at all; the SQL and the timings still come through.
max Arg Chars
per-value truncation. Blobs are never included, only their size.