From bb462202dc8de08d18412a09fc4dc3566605fe58 Mon Sep 17 00:00:00 2001 From: zclllyybb Date: Mon, 8 May 2023 11:01:54 +0800 Subject: [PATCH] [Exec] log the fuzzy config of be (#19349) --- be/src/common/configbase.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/be/src/common/configbase.cpp b/be/src/common/configbase.cpp index d965687a23..877c591492 100644 --- a/be/src/common/configbase.cpp +++ b/be/src/common/configbase.cpp @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +#include #include #include @@ -443,6 +444,7 @@ Status set_config(const std::string& field, const std::string& value, bool need_ } Status set_fuzzy_config(const std::string& field, const std::string& value) { + LOG(INFO) << fmt::format("FUZZY MODE: {} has been set to {}", field, value); return set_config(field, value, false, true); }