Skip to content
Snippets Groups Projects
Commit 08a34aeb authored by Mirko Wächter's avatar Mirko Wächter
Browse files

more clear output if kinematic root is wrong

parent 0b24ea36
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ namespace VirtualRobot
if (!isKinematicRoot(this->kinematicRoot))
{
VR_WARNING << "RobotNodeSet initialized with invalid kinematic root: Falling back to robot root node" << endl;
VR_WARNING << "RobotNodeSet " << name << " initialized with invalid kinematic root '" << kinematicRoot->getName() << "': Falling back to robot root node" << endl;
this->kinematicRoot = rob->getRootNode();
}
......@@ -718,7 +718,7 @@ namespace VirtualRobot
bool RobotNodeSet::isKinematicRoot(RobotNodePtr robotNode)
{
RobotNodePtr node;
VR_ASSERT(robotNode);
for (size_t i = 0; i < robotNodes.size(); i++)
{
node = robotNodes.at(i);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment