Skip to content

Commit 0d55216

Browse files
authored
fix debug log (TuGraph-family#680)
1 parent 77f9d57 commit 0d55216

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/cypher/execution_plan/execution_plan_maker.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ geax::frontend::GEAXErrorCode ExecutionPlanMaker::Build(geax::frontend::AstNode*
142142
if (ret != geax::frontend::GEAXErrorCode::GEAX_SUCCEED) {
143143
return ret;
144144
}
145-
_DumpPlanBeforeConnect(0, false);
145+
LOG_DEBUG() << _DumpPlanBeforeConnect(0, false);
146146
LOG_DEBUG() << "Dump plan finished!";
147147
root = pattern_graph_root_[0];
148148
for (size_t i = 1; i < pattern_graph_root_.size(); i++) {
@@ -163,7 +163,6 @@ std::string ExecutionPlanMaker::_DumpPlanBeforeConnect(int indent, bool statisti
163163
OpBase::DumpStream(pattern_graph_root_[i], 0, false, s);
164164
}
165165
}
166-
LOG_DEBUG() << s;
167166
return s;
168167
}
169168

0 commit comments

Comments
 (0)