You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A common use case for throttled rosconsole messages is to warn about some sanity-check condition being false, but not fill the screen with warnings. It would make sense to be able to say
ROS_DEBUG_THROTTLE_COND(5.0, !validityCheck(), "State is invalid!")
with the intended meaning that every 5 seconds, validityCheck is called, and if it's false the message is output. NAMED and STREAM variants would also be nice.
The text was updated successfully, but these errors were encountered:
A common use case for throttled rosconsole messages is to warn about some sanity-check condition being false, but not fill the screen with warnings. It would make sense to be able to say
ROS_DEBUG_THROTTLE_COND(5.0, !validityCheck(), "State is invalid!")
with the intended meaning that every 5 seconds, validityCheck is called, and if it's false the message is output. NAMED and STREAM variants would also be nice.
The text was updated successfully, but these errors were encountered: