Android redacted

Sql cipher is redacting my sql statements this is nice for production but not for debugging.

I am getting Error inserting "<"redacted values> using "<"redacted sql>
how can I disable this for debugbing?

Hello @bk12

Without modifying the source, you won’t be able to see the queries within logcat. One option to consider is using the PRAGMA cipher_profile command to capture your queries directly.

@developernotes
Could you please help to understand how to execute it on Android?
I added database.rawExecSQL(“PRAGMA cipher_profile=’” + name + “.log’;”); where name is absolute path in the system but I could not see any generated logs.