Skip to content

Commit 1b85ae4

Browse files
committed
is_sqlcipher_enabled
1 parent 180a31f commit 1b85ae4

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

xmtp_mls/src/storage/encrypted_store/sqlcipher_connection.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,16 @@ impl super::native::ValidatedConnection for EncryptedConnection {
263263
cipher_version.cipher_version,
264264
cipher_provider_version
265265
);
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 {
267270
conn.batch_execute("PRAGMA cipher_log = stderr; PRAGMA cipher_log_level = INFO;")
268271
.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;")
271276
.ok();
272277
}
273278
tracing::debug!("SQLCipher Database validated.");

0 commit comments

Comments
 (0)