diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-03-01 16:42:10 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-01 16:42:10 +0000 |
| commit | f9fa441d6089fd735a8a3a20f12ab00eb659f342 (patch) | |
| tree | 2732ef44e7086deb2b427fcfd86d2d229b5ed827 | |
| parent | feat(ui): Add config setting for showing tabs (#1755) (diff) | |
| download | atuin-f9fa441d6089fd735a8a3a20f12ab00eb659f342.zip | |
fix(regex): disable regex error logs (#1806)
| -rw-r--r-- | atuin/src/command/client.rs | 1 |
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(); |
