1 Star 1 Fork 18

Qt(开源集合)/ZenShot

forked from Gitee 极速下载/ZenShot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
spdlogwrapper.hpp 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
leexu007 提交于 2022-08-04 13:25 . * First run screenshot error
#ifndef SPDLOGWRAPPER_HPP
#define SPDLOGWRAPPER_HPP
#include "spdlog/spdlog.h"
namespace spdlog
{
void spdlog_init(const char* name, const char* file_name, int h, int m, int lv, int flv);
logger* logger_ptr();
} // spdlog
#ifdef USE_SPDLOG_
#define L_TRACE(fmt, ...) spdlog::logger_ptr()->trace(fmt, ##__VA_ARGS__);
#define L_DEBUG(fmt, ...) spdlog::logger_ptr()->debug(fmt, ##__VA_ARGS__);
#define L_INFO(fmt, ...) spdlog::logger_ptr()->info(fmt, ##__VA_ARGS__);
#define L_WARN(fmt, ...) spdlog::logger_ptr()->warn(fmt, ##__VA_ARGS__);
#define L_ERROR(fmt, ...) spdlog::logger_ptr()->error(fmt, ##__VA_ARGS__);
#define L_CRITICAL(fmt, ...) spdlog::logger_ptr()->critical(fmt, ##__VA_ARGS__);
#define L_FUNCTION() L_TRACE("function: {0} @ line: {1}", __FUNCTION__, __LINE__);
#else
#define L_TRACE(fmt, ...)
#define L_DEBUG(fmt, ...)
#define L_INFO(fmt, ...)
#define L_WARN(fmt, ...)
#define L_ERROR(fmt, ...)
#define L_CRITICAL(fmt, ...)
#define L_FUNCTION()
#endif // USE_SPDLOG_
#endif // SPDLOGWRAPPER_HPP
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/qt-open-source-collection/ZenShot.git
git@gitee.com:qt-open-source-collection/ZenShot.git
qt-open-source-collection
ZenShot
ZenShot
main

搜索帮助