Skip to content

Commit

Permalink
Revert from printing descriptions to node names
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoryLeMasurier committed Apr 12, 2024
1 parent 81ee737 commit 0a79431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/behavior_tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void printTreeRecursively(const TreeNode* root_node, std::ostream& stream)
stream << "!nullptr!" << std::endl;
return;
}
stream << node->getShortDescription() << std::endl;
stream << node->name() << std::endl;
indent++;

if(auto control = dynamic_cast<const BT::ControlNode*>(node))
Expand Down

0 comments on commit 0a79431

Please sign in to comment.