00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef ART_ERROR_H
00015 #define ART_ERROR_H
00016
00022 #include <ros/ros.h>
00023
00024
00025 #ifdef __cplusplus
00026 extern "C" {
00027 #endif
00028
00029
00030 #define ART_ERROR(msg,args...) ROS_ERROR("error : " msg, ## args)
00031 #define ART_WARN(msg,args...) ROS_WARN("warning : " msg, ## args)
00032 #define ART_MSG(level, msg,args...) ROS_INFO(msg, ## args)
00033
00034 #ifdef __cplusplus
00035 }
00036 #endif
00037
00038 #endif // ART_ERROR_H