No ROS_INFO messages using ROS laser plug-in
Hi
I had a look on the gazebo ROS laser plug-in and I added a ROS_INFO message just before the ROS callback queue.
...
ROS_INFO ( "Starting GazeboRosLaser Plugin (ns = %s)!", this->robot_namespace_.c_str() );
printf("Bad HACK: Starting GazeboRosLaser Plugin (ns = %s)!\n", this->robot_namespace_.c_str() );
// ros callback queue for processing subscription
this->deferred_load_thread_ = boost::thread(boost::bind(&GazeboRosLaser::LoadThread, this));
...
The message was not published, using ROS_WARN works So what do I have to change to publish the info messages, other plugins like the diff drive publishes the ROS_INFO messages.
Greetings