Downgrade sql statements to trace
This commit is contained in:
parent
6fda24186b
commit
7e4c54867e
1 changed files with 1 additions and 1 deletions
2
src/cache/low_mem.rs
vendored
2
src/cache/low_mem.rs
vendored
|
@ -39,7 +39,7 @@ impl LowMemCache {
|
||||||
let mut options = SqliteConnectOptions::from_str(&db_url)
|
let mut options = SqliteConnectOptions::from_str(&db_url)
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.create_if_missing(true);
|
.create_if_missing(true);
|
||||||
options.log_statements(LevelFilter::Debug);
|
options.log_statements(LevelFilter::Trace);
|
||||||
let db = SqlitePool::connect_with(options).await.unwrap();
|
let db = SqlitePool::connect_with(options).await.unwrap();
|
||||||
|
|
||||||
// Run db init
|
// Run db init
|
||||||
|
|
Loading…
Reference in a new issue