ctb/include/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 #include <stdio.h>
00039 #include "config.h"
00040
00041 #define LOG_PREFIX "INDEX"
00042
00043 #ifndef LOGGING_ON
00044 #define LOGGING_ON 0
00045 #endif
00046
00047 #ifndef WARNING_ON
00048 #define WARNING_ON 1
00049 #endif
00050
00051 #ifndef ERROR_ON
00052 #define ERROR_ON 1
00053 #endif
00054
00055
00056 #if (LOGGING_ON)
00057 #define LOGPRINTF(format, args...) fprintf(stderr, "(" LOG_PREFIX "_L)" __FILE__ ":%d,%s() " format "\n", __LINE__, __func__ , ##args)
00058 #else
00059 #define LOGPRINTF(format, args...) do {} while (0)
00060 #endif
00061
00062 #if (WARNING_ON)
00063 #define WARNPRINTF(format, args...) fprintf(stderr, "(" LOG_PREFIX "_W)" __FILE__ ":%d,%s() " format "\n", __LINE__, __func__ , ##args)
00064 #else
00065 #define WARNPRINTF(format, args...) do {} while (0)
00066 #endif
00067
00068 #if (ERROR_ON)
00069 #include <errno.h>
00070 #include <string.h>
00071 #define ERRORPRINTF(format, args...) fprintf(stderr, "(" LOG_PREFIX "_E)" __FILE__ ":%d,%s() --- " format "\n", __LINE__, __func__ , ##args)
00072 #define ERRNOPRINTF(format, args...) fprintf(stderr, "(" LOG_PREFIX "_E)" __FILE__ ":%d,%s() --- " format ", errno [%d] [%s]\n", __LINE__, __func__ , ##args, errno, strerror(errno))
00073 #else
00074 #define ERRORPRINTF(format, args...) do {} while (0)
00075 #define ERRNOPRINTF(format, args...) do {} while (0)
00076 #endif
00077
00078 #endif // __LOG_H__