|
| #define | __ROSCONSOLE_FUNCTION__ "" |
| |
| #define | ROS_LIKELY(x) __builtin_expect((x),1) |
| |
| #define | ROS_LOG(level, name, ...) ROS_LOG_COND(true, level, name, __VA_ARGS__) |
| | Log to a given named logger at a given verbosity level, with printf-style formatting. More...
|
| |
| #define | ROS_LOG_COND(cond, level, name, ...) |
| | Log to a given named logger at a given verbosity level, only if a given condition has been met, with printf-style formatting. More...
|
| |
| #define | ROS_LOG_DELAYED_THROTTLE(rate, level, name, ...) |
| | Log to a given named logger at a given verbosity level, limited to a specific rate of printing, with printf-style formatting. More...
|
| |
| #define | ROS_LOG_FILTER(filter, level, name, ...) |
| | Log to a given named logger at a given verbosity level, with user-defined filtering, with printf-style formatting. More...
|
| |
| #define | ROS_LOG_ONCE(level, name, ...) |
| | Log to a given named logger at a given verbosity level, only the first time it is hit when enabled, with printf-style formatting. More...
|
| |
| #define | ROS_LOG_STREAM(level, name, args) ROS_LOG_STREAM_COND(true, level, name, args) |
| | Log to a given named logger at a given verbosity level, with stream-style formatting. More...
|
| |
| #define | ROS_LOG_STREAM_COND(cond, level, name, args) |
| | Log to a given named logger at a given verbosity level, only if a given condition has been met, with stream-style formatting. More...
|
| |
| #define | ROS_LOG_STREAM_DELAYED_THROTTLE(rate, level, name, args) |
| | Log to a given named logger at a given verbosity level, limited to a specific rate of printing and postponed first message. More...
|
| |
| #define | ROS_LOG_STREAM_FILTER(filter, level, name, args) |
| | Log to a given named logger at a given verbosity level, with user-defined filtering, with stream-style formatting. More...
|
| |
| #define | ROS_LOG_STREAM_ONCE(level, name, args) |
| | Log to a given named logger at a given verbosity level, only the first time it is hit when enabled, with printf-style formatting. More...
|
| |
| #define | ROS_LOG_STREAM_THROTTLE(rate, level, name, args) |
| | Log to a given named logger at a given verbosity level, limited to a specific rate of printing, with printf-style formatting. More...
|
| |
| #define | ROS_LOG_THROTTLE(rate, level, name, ...) |
| | Log to a given named logger at a given verbosity level, limited to a specific rate of printing, with printf-style formatting. More...
|
| |
| #define | ROS_UNLIKELY(x) __builtin_expect((x),0) |
| |
| #define | ROSCONSOLE_AUTOINIT |
| | Initializes the rosconsole library. Usually unnecessary to call directly. More...
|
| |
| #define | ROSCONSOLE_DECL |
| |
| #define | ROSCONSOLE_DEFAULT_NAME ROSCONSOLE_NAME_PREFIX |
| |
| #define | ROSCONSOLE_DEFINE_LOCATION(cond, level, name) |
| |
| #define | ROSCONSOLE_MIN_SEVERITY ROSCONSOLE_SEVERITY_DEBUG |
| |
| #define | ROSCONSOLE_NAME_PREFIX ROSCONSOLE_ROOT_LOGGER_NAME "." ROSCONSOLE_PACKAGE_NAME |
| |
| #define | ROSCONSOLE_PACKAGE_NAME "unknown_package" |
| |
| #define | ROSCONSOLE_PRINT_AT_LOCATION(...) ROSCONSOLE_PRINT_AT_LOCATION_WITH_FILTER(0, __VA_ARGS__) |
| |
| #define | ROSCONSOLE_PRINT_AT_LOCATION_WITH_FILTER(filter, ...) ::ros::console::print(filter, __rosconsole_define_location__loc.logger_, __rosconsole_define_location__loc.level_, __FILE__, __LINE__, __ROSCONSOLE_FUNCTION__, __VA_ARGS__) |
| |
| #define | ROSCONSOLE_PRINT_STREAM_AT_LOCATION(args) ROSCONSOLE_PRINT_STREAM_AT_LOCATION_WITH_FILTER(0, args) |
| |
| #define | ROSCONSOLE_PRINT_STREAM_AT_LOCATION_WITH_FILTER(filter, args) |
| |
| #define | ROSCONSOLE_PRINTF_ATTRIBUTE(a, b) |
| |
| #define | ROSCONSOLE_ROOT_LOGGER_NAME "ros" |
| |
| #define | ROSCONSOLE_ROSCONSOLE_H |
| |
| #define | ROSCONSOLE_SEVERITY_DEBUG 0 |
| |
| #define | ROSCONSOLE_SEVERITY_ERROR 3 |
| |
| #define | ROSCONSOLE_SEVERITY_FATAL 4 |
| |
| #define | ROSCONSOLE_SEVERITY_INFO 1 |
| |
| #define | ROSCONSOLE_SEVERITY_NONE 5 |
| |
| #define | ROSCONSOLE_SEVERITY_WARN 2 |
| |
|
| ROSCONSOLE_DECL void | roswrap::console::checkLogLocationEnabled (LogLocation *loc) |
| | Internal. More...
|
| |
| ROSCONSOLE_DECL void | roswrap::console::formatToBuffer (boost::shared_array< char > &buffer, size_t &buffer_size, const char *fmt,...) |
| |
| ROSCONSOLE_DECL std::string | roswrap::console::formatToString (const char *fmt,...) |
| |
| ROSCONSOLE_DECL bool | roswrap::console::get_loggers (std::map< std::string, levels::Level > &loggers) |
| |
| ROSCONSOLE_DECL void | roswrap::console::initialize () |
| | Don't call this directly. Performs any required initialization/configuration. Happens automatically when using the macro API. More...
|
| |
| ROSCONSOLE_DECL void | roswrap::console::initializeLogLocation (LogLocation *loc, const std::string &name, Level level) |
| | Internal. More...
|
| |
| ROSCONSOLE_DECL void | roswrap::console::notifyLoggerLevelsChanged () |
| | Tells the system that a logger's level has changed. More...
|
| |
| ROSCONSOLE_DECL void | roswrap::console::print (FilterBase *filter, void *logger, Level level, const char *file, int line, const char *function, const char *fmt,...) ROSCONSOLE_PRINTF_ATTRIBUTE(7 |
| | Don't call this directly. Use the ROS_LOG() macro instead. More...
|
| |
| ROSCONSOLE_DECL void ROSCONSOLE_DECL void | roswrap::console::print (FilterBase *filter, void *logger, Level level, const std::stringstream &str, const char *file, int line, const char *function) |
| |
| ROSCONSOLE_DECL void | roswrap::console::register_appender (LogAppender *appender) |
| |
| ROSCONSOLE_DECL void | roswrap::console::registerLogLocation (LogLocation *loc) |
| | Registers a logging location with the system. More...
|
| |
| ROSCONSOLE_DECL bool | roswrap::console::set_logger_level (const std::string &name, levels::Level level) |
| |
| ROSCONSOLE_DECL void | roswrap::console::setFixedFilterToken (const std::string &key, const std::string &val) |
| |
| ROSCONSOLE_DECL void | roswrap::console::setLogLocationLevel (LogLocation *loc, Level level) |
| | Internal. More...
|
| |
| ROSCONSOLE_DECL void | roswrap::console::shutdown () |
| |
| ROSCONSOLE_DECL void | roswrap::console::vformatToBuffer (boost::shared_array< char > &buffer, size_t &buffer_size, const char *fmt, va_list args) |
| |