Is there a way to use rospy.info with complex messages?
When I search about rospy.loginfo all I get is examples with topics that publish string messages.
What happen with complex messages? If I have
def a_callback(msg): rospy.loginfo("The messages is ",msg)
and msg is a complex message, is there a way to make it work? or should I do something like
rospy.loginfo("the message id is %d",msg.header.id)