File tree 1 file changed +8
-3
lines changed
xmtp_mls/src/storage/encrypted_store
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -263,11 +263,16 @@ impl super::native::ValidatedConnection for EncryptedConnection {
263
263
cipher_version. cipher_version,
264
264
cipher_provider_version
265
265
) ;
266
- if tracing:: enabled!( tracing:: Level :: DEBUG ) {
266
+
267
+ let log = std:: env:: var ( "SQLCIPHER_LOG" ) ;
268
+ let is_sqlcipher_log_enabled = matches ! ( log, Ok ( s) if s == "true" || s == "1" ) ;
269
+ if is_sqlcipher_log_enabled {
267
270
conn. batch_execute ( "PRAGMA cipher_log = stderr; PRAGMA cipher_log_level = INFO;" )
268
271
. ok ( ) ;
269
- } else {
270
- conn. batch_execute ( "PRAGMA cipher_log = stderr; PRAGMA cipher_log_level = WARN;" )
272
+ }
273
+
274
+ if is_sqlcipher_log_enabled {
275
+ conn. batch_execute ( "PRAGMA cipher_log = stderr; PRAGMA cipher_log_level = INFO;" )
271
276
. ok ( ) ;
272
277
}
273
278
tracing:: debug!( "SQLCipher Database validated." ) ;
You can’t perform that action at this time.
0 commit comments