Skip to content

Commit

Permalink
Avoid fatal when expression illegal. (#4618)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shylock-Hg authored Sep 6, 2022
1 parent bcab2f3 commit cdec60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/expression/LabelAttributeExpression.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit cdec60f

Please sign in to comment.