Skip to content
This repository has been archived by the owner on Nov 13, 2017. It is now read-only.

Commit

Permalink
Merge pull request #210 from davetcoleman/debug_model
Browse files Browse the repository at this point in the history
Fix truncated debug message
  • Loading branch information
isucan committed Nov 26, 2014
2 parents 82e6e27 + 3abaef5 commit 03d92cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions robot_model/src/robot_model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ void moveit::core::RobotModel::buildModel(const urdf::ModelInterface &urdf_model
logDebug("... constructing joint group states");
buildGroupStates(srdf_model);

std::stringstream ss;
printModelInfo(ss);
logDebug("%s", ss.str().c_str());
// For debugging entire model
if (false)
printModelInfo(std::cout);
}
else
logWarn("No root link found");
Expand Down

0 comments on commit 03d92cc

Please sign in to comment.