From 07fe3758c43ac63006cf4ebaef612c97a5938e55 Mon Sep 17 00:00:00 2001 From: Cai Yudong Date: Tue, 26 Oct 2021 19:34:22 +0800 Subject: [PATCH] Remove core/src/utils/Log.h (#10675) Signed-off-by: yudong.cai --- internal/core/src/segcore/segcore_init_c.cpp | 8 +++----- internal/core/src/utils/Log.h | 14 -------------- 2 files changed, 3 insertions(+), 19 deletions(-) delete mode 100644 internal/core/src/utils/Log.h diff --git a/internal/core/src/segcore/segcore_init_c.cpp b/internal/core/src/segcore/segcore_init_c.cpp index 4a73292e12..d5215b9d27 100644 --- a/internal/core/src/segcore/segcore_init_c.cpp +++ b/internal/core/src/segcore/segcore_init_c.cpp @@ -9,12 +9,10 @@ // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express // or implied. See the License for the specific language governing permissions and limitations under the License -#include - -#include "segcore/segcore_init_c.h" -#include "segcore/SegcoreConfig.h" -#include "utils/Log.h" #include "config/ConfigKnowhere.h" +#include "log/Log.h" +#include "segcore/SegcoreConfig.h" +#include "segcore/segcore_init_c.h" namespace milvus::segcore { extern "C" void diff --git a/internal/core/src/utils/Log.h b/internal/core/src/utils/Log.h deleted file mode 100644 index f2a25d7de1..0000000000 --- a/internal/core/src/utils/Log.h +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (C) 2019-2020 Zilliz. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance -// with the License. You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software distributed under the License -// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -// or implied. See the License for the specific language governing permissions and limitations under the License. - -#pragma once - -#include "log/Log.h"