Skip to content
Snippets Groups Projects
Commit 76b26578 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

remove debugging couts

parent 4529ceb4
No related branches found
No related tags found
3 merge requests!11new release,!10new release,!4Gauss
......@@ -116,7 +116,7 @@ void WolfRosNode::visualize()
viz_->visualize(problem_ptr_);
auto stop = std::chrono::high_resolution_clock::now();
auto duration = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
std::cout << "Visualize took " << duration.count() << " microseconds" << std::endl;
//std::cout << "Visualize took " << duration.count() << " microseconds" << std::endl;
}
bool WolfRosNode::updateTf()
......@@ -241,7 +241,7 @@ int main(int argc, char **argv)
auto start3 = std::chrono::high_resolution_clock::now();
if ((ros::Time::now() - last_viz_time).toSec() >= wolf_node.viz_period_)
{
std::cout << "Last Viz since/viz_period_ " << (ros::Time::now() - last_viz_time).toSec() << " / " << wolf_node.viz_period_ << std::endl;
//std::cout << "Last Viz since/viz_period_ " << (ros::Time::now() - last_viz_time).toSec() << " / " << wolf_node.viz_period_ << std::endl;
wolf_node.visualize();
last_viz_time = ros::Time::now();
}
......
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