[Exec] log the fuzzy config of be (#19349)

This commit is contained in:
zclllyybb
2023-05-08 11:01:54 +08:00
committed by GitHub
parent 673cbe3317
commit bb462202dc

View File

@ -15,6 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#include <fmt/core.h>
#include <stdint.h>
#include <algorithm>
@ -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);
}