diff --git a/cli/helper.rs b/cli/helper.rs index f0d396ae0..70194234d 100644 --- a/cli/helper.rs +++ b/cli/helper.rs @@ -142,10 +142,7 @@ impl SqlCompleter { Ok((prefix_pos + 1, candidates)) } - Err(e) => { - tracing::error!("Dot completion error: {e}"); - Ok((prefix_pos + 1, Vec::new())) - } + Err(_) => Ok((prefix_pos + 1, Vec::new())), } }