Go to the documentation of this file.
32 #ifndef LOG_WRAPPER_H_
33 #define LOG_WRAPPER_H_
36 #if defined(SIMPLE_MESSAGE_USE_ROS) || defined(ROS)
40 #ifdef SIMPLE_MESSAGE_MOTOPLUS
60 #if defined(SIMPLE_MESSAGE_USE_ROS) || defined(ROS)
67 #define LOG_COMM(...) \
68 ROS_DEBUG(__VA_ARGS__)
70 #define LOG_DEBUG(...) \
71 ROS_DEBUG(__VA_ARGS__)
73 #define LOG_INFO(...) \
76 #define LOG_WARN(...) \
79 #define LOG_ERROR(...) \
80 ROS_ERROR(__VA_ARGS__)
82 #define LOG_FATAL(...) \
83 ROS_FATAL(__VA_ARGS__)
87 #define LOG_COMM(format, ...) \
88 ROS_DEBUG(format, ##__VA_ARGS__)
90 #define LOG_DEBUG(format, ...) \
91 ROS_DEBUG(format, ##__VA_ARGS__)
93 #define LOG_INFO(format, ...) \
94 ROS_INFO(format, ##__VA_ARGS__)
96 #define LOG_WARN(format, ...) \
97 ROS_WARN(format, ##__VA_ARGS__)
99 #define LOG_ERROR(format, ...) \
100 ROS_ERROR(format, ##__VA_ARGS__)
102 #define LOG_FATAL(format, ...) \
103 ROS_FATAL(FATAL, ##__VA_ARGS__)
107 #elif defined(STDIOLOG)
109 #define LOG(level, format, ...) \
114 printf(format, ##__VA_ARGS__); \
120 #define LOG_COMM(format, ...) LOG("COMM", format, ##__VA_ARGS__)
121 #define LOG_DEBUG(format, ...) LOG("DEBUG", format, ##__VA_ARGS__)
122 #define LOG_INFO(format, ...) LOG("INFO", format, ##__VA_ARGS__)
123 #define LOG_WARN(format, ...) LOG("WARNING", format, ##__VA_ARGS__)
124 #define LOG_ERROR(format, ...) LOG("ERROR", format, ##__VA_ARGS__)
125 #define LOG_FATAL(format, ...) LOG("FATAL", format, ##__VA_ARGS__)
130 #define LOG_COMM(format, ...)
131 #define LOG_DEBUG(format, ...)
132 #define LOG_INFO(format, ...)
133 #define LOG_WARN(format, ...)
134 #define LOG_ERROR(format, ...)
135 #define LOG_FATAL(format, ...)
simple_message
Author(s): Shaun Edwards
autogenerated on Wed Mar 2 2022 00:24:53