aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-03-01 16:42:10 +0000
committerGitHub <noreply@github.com>2024-03-01 16:42:10 +0000
commitf9fa441d6089fd735a8a3a20f12ab00eb659f342 (patch)
tree2732ef44e7086deb2b427fcfd86d2d229b5ed827
parentfeat(ui): Add config setting for showing tabs (#1755) (diff)
downloadatuin-f9fa441d6089fd735a8a3a20f12ab00eb659f342.zip
fix(regex): disable regex error logs (#1806)
-rw-r--r--atuin/src/command/client.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/atuin/src/command/client.rs b/atuin/src/command/client.rs
index 5b66aa39..6aacf422 100644
--- a/atuin/src/command/client.rs
+++ b/atuin/src/command/client.rs
@@ -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();