hello-world/settings/log.h
Go to the documentation of this file.00001 #ifndef __LOG_H__
00002 #define __LOG_H__
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #define LOG_PREFIX PACKAGE "-settings"
00040
00041
00042 #ifndef LOGGING_ON
00043 #define LOGGING_ON 1
00044 #endif
00045
00046 #ifndef WARNING_ON
00047 #define WARNING_ON 1
00048 #endif
00049
00050 #ifndef ERROR_ON
00051 #define ERROR_ON 1
00052 #endif
00053
00054
00055 #if (LOGGING_ON)
00056 #define LOGPRINTF(format, args...) fprintf(stderr, "(" LOG_PREFIX "_L)" __FILE__ ":%d,%s() " format "\n", __LINE__, __func__ , ##args)
00057 #else
00058 #define LOGPRINTF(format, args...) do {} while (0)
00059 #endif
00060
00061 #if (WARNING_ON)
00062 #define WARNPRINTF(format, args...) fprintf(stderr, "(" LOG_PREFIX "_W)" __FILE__ ":%d,%s() " format "\n", __LINE__, __func__ , ##args)
00063 #else
00064 #define WARNPRINTF(format, args...) do {} while (0)
00065 #endif
00066
00067 #if (ERROR_ON)
00068 #include <errno.h>
00069 #include <string.h>
00070 #define ERRORPRINTF(format, args...) fprintf(stderr, "(" LOG_PREFIX "_E)" __FILE__ ":%d,%s() --- " format "\n", __LINE__, __func__ , ##args)
00071 #define ERRNOPRINTF(format, args...) fprintf(stderr, "(" LOG_PREFIX "_E)" __FILE__ ":%d,%s() --- " format ", errno [%d] [%s]\n", __LINE__, __func__ , ##args, errno, strerror(errno))
00072 #else
00073 #define ERRORPRINTF(format, args...) do {} while (0)
00074 #define ERRNOPRINTF(format, args...) do {} while (0)
00075 #endif
00076
00077
00078 #endif // __LOG_H__