From 9997c5de342bc41f29f9d9eb9c15b6d8e61dc4eb Mon Sep 17 00:00:00 2001 From: Buqian Zheng Date: Wed, 16 Oct 2024 10:47:22 +0800 Subject: [PATCH] fix: remove excessive logging (#36859) issue: https://github.com/milvus-io/milvus/issues/35853 Signed-off-by: Buqian Zheng --- .../core/thirdparty/tantivy/tantivy-binding/src/tokenizer.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/core/thirdparty/tantivy/tantivy-binding/src/tokenizer.rs b/internal/core/thirdparty/tantivy/tantivy-binding/src/tokenizer.rs index f031789c84..2e0d283947 100644 --- a/internal/core/thirdparty/tantivy/tantivy-binding/src/tokenizer.rs +++ b/internal/core/thirdparty/tantivy/tantivy-binding/src/tokenizer.rs @@ -33,7 +33,6 @@ pub(crate) fn create_tokenizer(params: &HashMap) -> Option { - info!("no tokenizer is specified, using default tokenizer"); Some(default_tokenizer()) } }