ROS_INFO_ONCE in Python
Is there an equivalent to ROS_INFO_ONCES
in rospy?
I found rospy.loginfo_throttle()
but nothing like rospy.loginfo_once()
. Is this really not implemented or just hidden somewhere?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
Is there an equivalent to ROS_INFO_ONCES
in rospy?
I found rospy.loginfo_throttle()
but nothing like rospy.loginfo_once()
. Is this really not implemented or just hidden somewhere?
In python, there is no log once, but since Lunar we can use. Please refer http://wiki.ros.org/rospy/Overview/Lo...
To have the actual code here: Since Lunar, there is rospy.loginfo_once
.
Asked: 2017-03-31 08:05:26 -0600
Seen: 1,230 times
Last updated: Apr 10 '18
Change rospy node log level while running
rospy logging configuration file
Logging data to different files
problem with debug messages in rxconsole
Putting log messages from non-ROS code into ROS logging system
unable to change logging level in rxloggerlevel
How can I get roscpp_internal's debug logging to respect log levels? [closed]
Calls to rospy.log* from secondary threads not working [closed]
Not quite sure, but I think that they do not exist in python. They are implemented in C++ using macros which are not that easy to translate in python.