Can't See Log Message in rqt_console
Anyone know why I'm not seeing the loginfo message in rqt_console when I run the following node? I can see the message in the terminal screen so the message does seem to be getting generated. I just can't see it in rqt_console.
#! /usr/bin/env python
import roslib; roslib.load_manifest("robot_arm")
import rospy
def InitializeRobot():
robot_id = rospy.get_param("robot/robot_id")
rospy.init_node('InitializeRobot')
rospy.loginfo("ROBOT %i: Starting Up" % robot_id)
if __name__ == '__main__':
try:
InitializeRobot()
except rospy.ROSInterruptException:
pass