mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
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:
parent
52270701ce
commit
22995cea3f
@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user