remove error debug

This commit is contained in:
pedrocarlo
2025-04-04 17:44:34 -03:00
parent 57af9c71ba
commit d5fa37ab66

View File

@@ -142,10 +142,7 @@ impl<C: Parser + Send + Sync + 'static> SqlCompleter<C> {
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())),
}
}