Move back the search-side logging to tracing

This commit is contained in:
Kerollmops 2025-02-03 13:52:00 +01:00
parent 424c5bde40
commit cc8df5e11f
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F

View File

@ -66,7 +66,7 @@ impl<'ctx, Q: RankingRuleQueryTrait> RankingRule<'ctx, Q> for VectorSort<Q> {
"vector_sort".to_owned() "vector_sort".to_owned()
} }
#[tracing::instrument(level = "debug", skip_all, target = "search::vector_sort")] #[tracing::instrument(level = "trace", skip_all, target = "search::vector_sort")]
fn start_iteration( fn start_iteration(
&mut self, &mut self,
ctx: &mut SearchContext<'ctx>, ctx: &mut SearchContext<'ctx>,
@ -83,7 +83,7 @@ impl<'ctx, Q: RankingRuleQueryTrait> RankingRule<'ctx, Q> for VectorSort<Q> {
} }
#[allow(clippy::only_used_in_recursion)] #[allow(clippy::only_used_in_recursion)]
#[tracing::instrument(level = "debug", skip_all, target = "search::vector_sort")] #[tracing::instrument(level = "trace", skip_all, target = "search::vector_sort")]
fn next_bucket( fn next_bucket(
&mut self, &mut self,
ctx: &mut SearchContext<'ctx>, ctx: &mut SearchContext<'ctx>,