代码拉取完成,页面将自动刷新
#ifndef _LOG_H_
#define _LOG_H_
#include <stdio.h>
#ifndef LOG_LEVEL
#define LOG_LEVEL 5
#endif
/*
* This is the local tag used for the following simplified
* logging macros. You can change this preprocessor definition
* before using the other macros to change the tag.
*/
#ifndef LOG_TAG
#define LOG_TAG "LOG"
#endif
/*
* Simplified macro to send a verbose log message using the current LOG_TAG.
*/
#ifndef LOGV
#if LOG_LEVEL > 4
#define LOGV(fmt, ...) fprintf(stdout, LOG_TAG "(V): " fmt "\n", ##__VA_ARGS__)
#else
#define LOGV(fmt, ...)
#endif
#endif
/*
* Simplified macro to send a debug log message using the current LOG_TAG.
*/
#ifndef LOGD
#if LOG_LEVEL > 3
#define LOGD(fmt, ...) fprintf(stdout, LOG_TAG "(D): " fmt "\n", ##__VA_ARGS__)
#else
#define LOGD(fmt, ...)
#endif
#endif
/*
* Simplified macro to send an info log message using the current LOG_TAG.
*/
#ifndef LOGI
#if LOG_LEVEL > 2
#define LOGI(fmt, ...) fprintf(stdout, LOG_TAG "(I): " fmt "\n", ##__VA_ARGS__)
#else
#define LOGI(fmt, ...)
#endif
#endif
/*
* Simplified macro to send a warning log message using the current LOG_TAG.
*/
#ifndef LOGW
#if LOG_LEVEL > 1
#define LOGW(fmt, ...) fprintf(stderr, LOG_TAG "(W): " fmt "\n", ##__VA_ARGS__)
#else
#define LOGW(fmt, ...)
#endif
#endif
/*
* Simplified macro to send an error log message using the current LOG_TAG.
*/
#ifndef LOGE
#if LOG_LEVEL > 0
#define LOGE(fmt, ...) fprintf(stderr, LOG_TAG "(E): " fmt "\n", ##__VA_ARGS__)
#else
#define LOGE(fmt, ...)
#endif
#endif
#define Warn(fmt, ...) fprintf(stderr, "%s(%d, %d): warning: " fmt "\n", \
Input.fileName, TokenLine, TokenColumn, ##__VA_ARGS__)
#define Error(fmt, ...) fprintf(stderr, "%s(%d, %d): error: " fmt "\n", \
Input.fileName, TokenLine, TokenColumn, ##__VA_ARGS__)
enum {
EXT_UnknowErr = -1,
EXT_OK = 0,
EXT_NotExpect,
EXT_MemoryFull,
EXT_FileOpenFail,
EXT_NodeKindErr,
EXT_OutputBufferFull
};
#endif // _LOG_H_
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。