# HG changeset patch # User Ruslan Ermilov # Date 1323205630 0 # Node ID 73d37e1ccb91143abdecddf417e5ac1ae0c78eb9 # Parent 7423800ef437fda11e738070df73da998efaf947 - Improved error message when parsing of the "buffer" parameter of the "access_log" directive fails. - Added a warning if "log_format" is used in contexts other than "http". diff -r 7423800ef437 -r 73d37e1ccb91 src/http/modules/ngx_http_log_module.c --- a/src/http/modules/ngx_http_log_module.c Tue Dec 06 15:49:40 2011 +0000 +++ b/src/http/modules/ngx_http_log_module.c Tue Dec 06 21:07:10 2011 +0000 @@ -971,7 +971,7 @@ if (buf == NGX_ERROR) { ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "invalid parameter \"%V\"", &value[3]); + "invalid buffer value \"%V\"", &name); return NGX_CONF_ERROR; } @@ -1004,6 +1004,12 @@ ngx_uint_t i; ngx_http_log_fmt_t *fmt; + if (cf->cmd_type != NGX_HTTP_MAIN_CONF) { + ngx_conf_log_error(NGX_LOG_WARN, cf, 0, + "the \"log_format\" directive may be used " + "only on \"http\" level"); + } + value = cf->args->elts; fmt = lmcf->formats.elts;