fix(regex): disable regex error logs (#1806)

This commit is contained in:
Ellie Huxtable 2024-03-01 16:42:10 +00:00 committed by GitHub
parent 9933220dac
commit f9fa441d60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,6 +84,7 @@ impl Cmd {
async fn run_inner(self) -> Result<()> {
Builder::new()
.filter_level(log::LevelFilter::Off)
.filter_module("sqlx_sqlite::regexp", log::LevelFilter::Off)
.parse_env("ATUIN_LOG")
.init();