Nginx Debug Log
Posted 御風ゝ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx Debug Log相关的知识,希望对你有一定的参考价值。
//检查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__);
以上是关于Nginx Debug Log的主要内容,如果未能解决你的问题,请参考以下文章