代码拉取完成,页面将自动刷新
// SPDX-License-Identifier: GPL-3.0-only
/*
* Copyright (c) 2023 Dengfeng Liu <liudf0716@gmail.com>
*/
#ifndef XFRPC_DEBUG_H
#define XFRPC_DEBUG_H
#include <string.h>
#include <syslog.h>
#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
typedef struct _debug_conf {
int debuglevel; /**< @brief Debug information verbosity */
int log_stderr; /**< @brief Output log to stdout */
int log_syslog; /**< @brief Output log to syslog */
int syslog_facility; /**< @brief facility to use when using syslog for logging */
} debugconf_t;
extern debugconf_t debugconf;
/** Used to output messages.
* The messages will include the filename and line number, and will be sent to syslog if so configured in the config file
* @param level Debug level
* @param format... sprintf like format string
*/
#define debug(level, format...) _debug(__FILENAME__ , __LINE__, level, format)
/** @internal */
void _debug(const char *, int, int, const char *, ...);
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。