comparison src/core/ngx_log.h @ 658:5a4401b9551b NGINX_1_1_13

nginx 1.1.13 *) Feature: the "TLSv1.1" and "TLSv1.2" parameters of the "ssl_protocols" directive. *) Bugfix: the "limit_req" directive parameters were not inherited correctly; the bug had appeared in 1.1.12. *) Bugfix: the "proxy_redirect" directive incorrectly processed "Refresh" header if regular expression were used. *) Bugfix: the "proxy_cache_use_stale" directive with "error" parameter did not return answer from cache if there were no live upstreams. *) Bugfix: the "worker_cpu_affinity" directive might not work. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in 1.1.12. *) Bugfix: in the ngx_http_mp4_module.
author Igor Sysoev <http://sysoev.ru>
date Mon, 16 Jan 2012 00:00:00 +0400
parents f200748c0ac8
children d0f7a625f27c
comparison
equal deleted inserted replaced
657:e1296af53cc0 658:5a4401b9551b
119 119
120 #if (NGX_DEBUG) 120 #if (NGX_DEBUG)
121 121
122 #if (NGX_HAVE_VARIADIC_MACROS) 122 #if (NGX_HAVE_VARIADIC_MACROS)
123 123
124 #define ngx_log_debug0 ngx_log_debug 124 #define ngx_log_debug0(level, log, err, fmt) \
125 #define ngx_log_debug1 ngx_log_debug 125 ngx_log_debug(level, log, err, fmt)
126 #define ngx_log_debug2 ngx_log_debug 126
127 #define ngx_log_debug3 ngx_log_debug 127 #define ngx_log_debug1(level, log, err, fmt, arg1) \
128 #define ngx_log_debug4 ngx_log_debug 128 ngx_log_debug(level, log, err, fmt, arg1)
129 #define ngx_log_debug5 ngx_log_debug 129
130 #define ngx_log_debug6 ngx_log_debug 130 #define ngx_log_debug2(level, log, err, fmt, arg1, arg2) \
131 #define ngx_log_debug7 ngx_log_debug 131 ngx_log_debug(level, log, err, fmt, arg1, arg2)
132 #define ngx_log_debug8 ngx_log_debug 132
133 #define ngx_log_debug3(level, log, err, fmt, arg1, arg2, arg3) \
134 ngx_log_debug(level, log, err, fmt, arg1, arg2, arg3)
135
136 #define ngx_log_debug4(level, log, err, fmt, arg1, arg2, arg3, arg4) \
137 ngx_log_debug(level, log, err, fmt, arg1, arg2, arg3, arg4)
138
139 #define ngx_log_debug5(level, log, err, fmt, arg1, arg2, arg3, arg4, arg5) \
140 ngx_log_debug(level, log, err, fmt, arg1, arg2, arg3, arg4, arg5)
141
142 #define ngx_log_debug6(level, log, err, fmt, \
143 arg1, arg2, arg3, arg4, arg5, arg6) \
144 ngx_log_debug(level, log, err, fmt, \
145 arg1, arg2, arg3, arg4, arg5, arg6)
146
147 #define ngx_log_debug7(level, log, err, fmt, \
148 arg1, arg2, arg3, arg4, arg5, arg6, arg7) \
149 ngx_log_debug(level, log, err, fmt, \
150 arg1, arg2, arg3, arg4, arg5, arg6, arg7)
151
152 #define ngx_log_debug8(level, log, err, fmt, \
153 arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \
154 ngx_log_debug(level, log, err, fmt, \
155 arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)
133 156
134 157
135 #else /* NO VARIADIC MACROS */ 158 #else /* NO VARIADIC MACROS */
136 159
137 #define ngx_log_debug0(level, log, err, fmt) \ 160 #define ngx_log_debug0(level, log, err, fmt) \