Skip to content

Commit 0a79431

Browse files
Revert from printing descriptions to node names
1 parent 81ee737 commit 0a79431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/behavior_tree.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void printTreeRecursively(const TreeNode* root_node, std::ostream& stream)
126126
stream << "!nullptr!" << std::endl;
127127
return;
128128
}
129-
stream << node->getShortDescription() << std::endl;
129+
stream << node->name() << std::endl;
130130
indent++;
131131

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

0 commit comments

Comments
 (0)