fix: Remove debug logging from JsonFlatIndex (#44807)

issue: https://github.com/milvus-io/milvus/issues/44452

Signed-off-by: Buqian Zheng <zhengbuqian@gmail.com>
Co-authored-by: buqian.zheng <buqian.zheng@zilliz.com>
This commit is contained in:
Buqian Zheng 2025-10-23 16:08:06 +08:00 committed by GitHub
parent 52270701ce
commit 22995cea3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -103,7 +103,6 @@ class JsonFlatIndexQueryExecutor : public InvertedIndexTantivy<T> {
const TargetBitmap const TargetBitmap
Range(T value, OpType op) override { Range(T value, OpType op) override {
LOG_INFO("[executor] JsonFlatIndexQueryExecutor Range");
tracer::AutoSpan span("JsonFlatIndexQueryExecutor::Range", tracer::AutoSpan span("JsonFlatIndexQueryExecutor::Range",
tracer::GetRootSpan()); tracer::GetRootSpan());
TargetBitmap bitset(this->Count()); TargetBitmap bitset(this->Count());
@ -211,9 +210,6 @@ class JsonFlatIndex : public InvertedIndexTantivy<std::string> {
json_path = json_path.substr(1); json_path = json_path.substr(1);
} }
LOG_INFO("Create JsonFlatIndexQueryExecutor with json_path: {}",
json_path);
return std::make_shared<JsonFlatIndexQueryExecutor<T>>(json_path, return std::make_shared<JsonFlatIndexQueryExecutor<T>>(json_path,
*this); *this);
} }