All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends
Logging Macros

Defines

#define logError(fmt,...)   ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_ERROR, fmt, ##__VA_ARGS__)
 Log a formatted error string.
#define logWarn(fmt,...)   ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_WARN, fmt, ##__VA_ARGS__)
 Log a formatted warning string.
#define logInform(fmt,...)   ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_INFO, fmt, ##__VA_ARGS__)
 Log a formatted information string.
#define logDebug(fmt,...)   ompl::msg::log(__FILE__, __LINE__, ompl::msg::LOG_DEBUG, fmt, ##__VA_ARGS__)
 Log a formatted debugging string.

Define Documentation

#define logDebug (   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.

Definition at line 70 of file Console.h.

#define logError (   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.

Definition at line 64 of file Console.h.

#define logInform (   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.

Definition at line 68 of file Console.h.

#define logWarn (   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.

Definition at line 66 of file Console.h.

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines