Nginx Debug Log

时间:2022-06-28 06:54:16

//检查nginx.conf时(sudo ./nginx -t),输出数据到检测结果
//ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "配置解析处理");

#define mod_log(...) ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0, __VA_ARGS__);
#define mod_log_r(r, ...) ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0, __VA_ARGS__);
#define mod_log_log(log, ...) ngx_log_error(NGX_LOG_ALERT, log, 0, __VA_ARGS__);