Downgrade sql statements to trace

feature/v32-tokens
Edward Shen 2021-04-22 13:20:45 -04:00
parent 6fda24186b
commit 7e4c54867e
Signed by: edward
GPG Key ID: 19182661E818369F
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ impl LowMemCache {
let mut options = SqliteConnectOptions::from_str(&db_url)
.unwrap()
.create_if_missing(true);
options.log_statements(LevelFilter::Debug);
options.log_statements(LevelFilter::Trace);
let db = SqlitePool::connect_with(options).await.unwrap();
// Run db init