2 Star 1 Fork 0

翼翼/VimCintaNotes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
log.h 691 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef _LOG_H
#define _LOG_H
#define LOG_LEVEL_DEBUG "DEBUG"
#define LOG_LEVEL_INFO "INFO "
#define LOG_LEVEL_ERR "ERROR"
#define debug_log(level, fmt, ...)\
do\
{\
time_t t = time( NULL ); \
char tmpBuf[20]; \
if(!g_log_fp) break;\
strftime(tmpBuf, sizeof(tmpBuf), "%Y%m%d %H:%M:%S", localtime(&t));\
fprintf(g_log_fp, "%s %s [%s %d][%s](%d) " fmt "\n", tmpBuf, level, __FILE__, __LINE__, __FUNCTION__, GetCurrentProcessId(), ##__VA_ARGS__);\
fflush(g_log_fp); \
}while(0)
#define dli(fmt, ...) debug_log(LOG_LEVEL_DEBUG, fmt, ##__VA_ARGS__)
#define lfi dli("Enter...")
#define Return \
dli("Exit.");\
return
#endif /* end of include guard */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/dknlnl/VimCintaNotes.git
git@gitee.com:dknlnl/VimCintaNotes.git
dknlnl
VimCintaNotes
VimCintaNotes
master

搜索帮助