diff --git a/hlpr_gazebo/launch/vector_controllers.launch b/hlpr_gazebo/launch/vector_controllers.launch index 5dbc083..23da053 100644 --- a/hlpr_gazebo/launch/vector_controllers.launch +++ b/hlpr_gazebo/launch/vector_controllers.launch @@ -37,7 +37,8 @@ - + + diff --git a/hlpr_gazebo/src/vector_control_interface.py b/hlpr_gazebo/src/vector_control_interface.py index 2df79a2..c1e649b 100755 --- a/hlpr_gazebo/src/vector_control_interface.py +++ b/hlpr_gazebo/src/vector_control_interface.py @@ -131,15 +131,15 @@ def __init__(self): self.gripper_cmd[self.RIGHT_KEY] = None # Initialize components for moveit IK service - rospy.logwarn("Waiting for MoveIt! for 10 seconds...") + rospy.loginfo("Waiting for MoveIt! for 10 seconds...") try: rospy.wait_for_service('compute_ik', timeout=10.0) # Wait for 10 seconds and assumes we don't want IK self.compute_ik = rospy.ServiceProxy('compute_ik', GetPositionIK) except rospy.ROSException, e: - rospy.logwarn("MoveIt was not loaded and arm teleop will not be available") + rospy.loginfo("MoveIt was not loaded and arm teleop will not be available") self.compute_ik = None else: - rospy.logwarn("MoveIt detected") + rospy.loginfo("MoveIt detected") self.eef_sub = rospy.Subscriber('/vector/right_arm/cartesian_vel_cmd', JacoCartesianVelocityCmd, self.EEFCallback, queue_size=1) rospy.loginfo("Done Init")