diff --git a/core/src/index/knowhere/knowhere/index/vector_index/FaissBaseIndex.cpp b/core/src/index/knowhere/knowhere/index/vector_index/FaissBaseIndex.cpp index 1ab0301a8d..89c478b8e3 100644 --- a/core/src/index/knowhere/knowhere/index/vector_index/FaissBaseIndex.cpp +++ b/core/src/index/knowhere/knowhere/index/vector_index/FaissBaseIndex.cpp @@ -70,7 +70,8 @@ FaissBaseIndex::SealImpl() { faiss::Index* index = index_.get(); auto idx = dynamic_cast(index); if (idx != nullptr) { - KNOWHERE_LOG_DEBUG << "Test before to_readonly:" << " IVF READONLY " << std::boolalpha << idx->is_readonly(); + KNOWHERE_LOG_DEBUG << "Test before to_readonly:" + << " IVF READONLY " << std::boolalpha << idx->is_readonly(); idx->to_readonly(); } #endif