#include <boost/format.hpp>
#include <ros/console.h>
Go to the source code of this file.
|
| #define | RBX_FATAL(fmt, ...) ROS_FATAL_STREAM(robowflex::log::format(fmt, ##__VA_ARGS__).c_str()) |
| | Output a fatal logging message. More...
|
| |
| #define | RBX_ERROR(fmt, ...) ROS_ERROR_STREAM(robowflex::log::format(fmt, ##__VA_ARGS__).c_str()) |
| | Output a error logging message. More...
|
| |
| #define | RBX_WARN(fmt, ...) ROS_WARN_STREAM(robowflex::log::format(fmt, ##__VA_ARGS__).c_str()) |
| | Output a warning logging message. More...
|
| |
| #define | RBX_INFO(fmt, ...) ROS_INFO_STREAM(robowflex::log::format(fmt, ##__VA_ARGS__).c_str()) |
| | Output a info logging message. More...
|
| |
| #define | RBX_DEBUG(fmt, ...) ROS_DEBUG_STREAM(robowflex::log::format(fmt, ##__VA_ARGS__).c_str()) |
| | Output a debug logging message. More...
|
| |
◆ RBX_DEBUG
Output a debug logging message.
- Parameters
-
| [in] | fmt | Format string (see boost::format specification) |
| [in] | ... | Format arguments. |
Definition at line 126 of file log.h.
◆ RBX_ERROR
Output a error logging message.
- Parameters
-
| [in] | fmt | Format string (see boost::format specification) |
| [in] | ... | Format arguments. |
Definition at line 102 of file log.h.
◆ RBX_FATAL
Output a fatal logging message.
- Parameters
-
| [in] | fmt | Format string (see boost::format specification) |
| [in] | ... | Format arguments. |
Definition at line 94 of file log.h.
◆ RBX_INFO
Output a info logging message.
- Parameters
-
| [in] | fmt | Format string (see boost::format specification) |
| [in] | ... | Format arguments. |
Definition at line 118 of file log.h.
◆ RBX_WARN
Output a warning logging message.
- Parameters
-
| [in] | fmt | Format string (see boost::format specification) |
| [in] | ... | Format arguments. |
Definition at line 110 of file log.h.