Skip to content

Commit

Permalink
fix debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcui committed Sep 27, 2024
1 parent c24e052 commit 8b16a60
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cypher/execution_plan/execution_plan_maker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ geax::frontend::GEAXErrorCode ExecutionPlanMaker::Build(geax::frontend::AstNode*
if (ret != geax::frontend::GEAXErrorCode::GEAX_SUCCEED) {
return ret;
}
_DumpPlanBeforeConnect(0, false);
LOG_DEBUG() << _DumpPlanBeforeConnect(0, false);
LOG_DEBUG() << "Dump plan finished!";
root = pattern_graph_root_[0];
for (size_t i = 1; i < pattern_graph_root_.size(); i++) {
Expand All @@ -163,7 +163,6 @@ std::string ExecutionPlanMaker::_DumpPlanBeforeConnect(int indent, bool statisti
OpBase::DumpStream(pattern_graph_root_[i], 0, false, s);
}
}
LOG_DEBUG() << s;
return s;
}

Expand Down

0 comments on commit 8b16a60

Please sign in to comment.