From cdec60fb2060919b19419482addfe1b57daa7f55 Mon Sep 17 00:00:00 2001 From: shylock <33566796+Shylock-Hg@users.noreply.github.com> Date: Tue, 6 Sep 2022 14:25:25 +0800 Subject: [PATCH] Avoid fatal when expression illegal. (#4618) --- src/common/expression/LabelAttributeExpression.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/expression/LabelAttributeExpression.h b/src/common/expression/LabelAttributeExpression.h index 3ed02581f01..40cee0d7fb0 100644 --- a/src/common/expression/LabelAttributeExpression.h +++ b/src/common/expression/LabelAttributeExpression.h @@ -34,7 +34,7 @@ class LabelAttributeExpression final : public Expression { } const Value& eval(ExpressionContext&) override { - LOG(FATAL) << "LabelAttributeExpression has to be rewritten"; + DLOG(FATAL) << "LabelAttributeExpression has to be rewritten"; return Value::kNullBadData; }