Files
zTC1/TC1/http_server/web_log.h
2021-11-26 15:34:02 +08:00

23 lines
397 B
C

#include <time.h>
#ifndef WEB_LOG_H
#define WEB_LOG_H
#define LOG_NUM 100
#define LOG_LEN 128
#define TIME_LEN 22
typedef struct
{
int idx;
char* logs[LOG_NUM];
} LogRecord;
void SetLogRecord(LogRecord* lr, char* log);
char* GetLogRecord();
void WebLog(const char *M, ...);
#define web_log(N, M, ...) WebLog("["N" %s:%d] "M, SHORT_FILE, __LINE__, ##__VA_ARGS__)
#endif // !WEB_LOG_H