Skip to content

Commit

Permalink
Better log msg
Browse files Browse the repository at this point in the history
  • Loading branch information
rvu1024 committed Dec 20, 2023
1 parent 50117ab commit 963b72f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ class TYtDqIntegration: public TDqIntegrationBase {
pipeline->Add(CreateFunctorTransformer([state](TExprNode::TPtr input, TExprNode::TPtr& output, TExprContext& ctx) {
return OptimizeExpr(input, output, [&](const TExprNode::TPtr& node, TExprContext& ctx) -> TExprNode::TPtr {
if (TYtReadTable::Match(node.Get()) && !node->Head().IsWorld()) {
YQL_CLOG(INFO, ProviderYt) << "YtTrimWorld";
YQL_CLOG(INFO, ProviderYt) << "Peephole-YtTrimWorld";
return ctx.ChangeChild(*node, 0, ctx.NewWorld(node->Pos()));
}
return node;
Expand All @@ -689,7 +689,7 @@ class TYtDqIntegration: public TDqIntegrationBase {
output = input;
auto status = SubstTables(output, state, true, ctx);
if (status.Level != IGraphTransformer::TStatus::Error && input != output) {
YQL_CLOG(INFO, ProviderYt) << "YtSubstTables";
YQL_CLOG(INFO, ProviderYt) << "Peephole-YtSubstTables";
}
return status;
}), "YtSubstTables", TIssuesIds::DEFAULT_ERROR);
Expand Down

0 comments on commit 963b72f

Please sign in to comment.