Logging Macros
Defines | |
| #define | OMPL_ERROR(fmt,...) ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_ERROR, fmt, ##__VA_ARGS__) |
| Log a formatted error string. | |
| #define | OMPL_WARN(fmt,...) ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_WARN, fmt, ##__VA_ARGS__) |
| Log a formatted warning string. | |
| #define | OMPL_INFORM(fmt,...) ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_INFO, fmt, ##__VA_ARGS__) |
| Log a formatted information string. | |
| #define | OMPL_DEBUG(fmt,...) ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_DEBUG, fmt, ##__VA_ARGS__) |
| Log a formatted debugging string. | |
Define Documentation
| #define OMPL_DEBUG | ( | fmt, | |
| ... | |||
| ) | ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_DEBUG, fmt, ##__VA_ARGS__) |
Log a formatted debugging string.
- Remarks:
- This macro takes the same arguments as [printf](http://www.cplusplus.com/reference/clibrary/cstdio/printf).
| #define OMPL_ERROR | ( | fmt, | |
| ... | |||
| ) | ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_ERROR, fmt, ##__VA_ARGS__) |
Log a formatted error string.
- Remarks:
- This macro takes the same arguments as [printf](http://www.cplusplus.com/reference/clibrary/cstdio/printf).
| #define OMPL_INFORM | ( | fmt, | |
| ... | |||
| ) | ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_INFO, fmt, ##__VA_ARGS__) |
Log a formatted information string.
- Remarks:
- This macro takes the same arguments as [printf](http://www.cplusplus.com/reference/clibrary/cstdio/printf).
| #define OMPL_WARN | ( | fmt, | |
| ... | |||
| ) | ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_WARN, fmt, ##__VA_ARGS__) |
Log a formatted warning string.
- Remarks:
- This macro takes the same arguments as [printf](http://www.cplusplus.com/reference/clibrary/cstdio/printf).