From b136286c53de42a4186932505b6019951cb2b696 Mon Sep 17 00:00:00 2001 From: starlord Date: Wed, 4 Sep 2019 16:32:22 +0800 Subject: [PATCH] remove boring log Former-commit-id: 2be0fd0de169ff85565e578833e00659ca3cd319 --- cpp/src/db/DBImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/src/db/DBImpl.cpp b/cpp/src/db/DBImpl.cpp index 2c05e27ea2..cac7e8c388 100644 --- a/cpp/src/db/DBImpl.cpp +++ b/cpp/src/db/DBImpl.cpp @@ -183,7 +183,7 @@ Status DBImpl::GetTableRowCount(const std::string& table_id, uint64_t& row_count Status DBImpl::InsertVectors(const std::string& table_id_, uint64_t n, const float* vectors, IDNumbers& vector_ids_) { - ENGINE_LOG_DEBUG << "Insert " << n << " vectors to cache"; +// ENGINE_LOG_DEBUG << "Insert " << n << " vectors to cache"; Status status; zilliz::milvus::server::CollectInsertMetrics metrics(n, status); @@ -191,7 +191,7 @@ Status DBImpl::InsertVectors(const std::string& table_id_, // std::chrono::microseconds time_span = std::chrono::duration_cast(end_time - start_time); // double average_time = double(time_span.count()) / n; - ENGINE_LOG_DEBUG << "Insert vectors to cache finished"; +// ENGINE_LOG_DEBUG << "Insert vectors to cache finished"; return status; }