diff options
author | Igor Sysoev <igor@sysoev.ru> | 2011-05-13 10:06:56 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2011-05-13 10:06:56 +0000 |
commit | 868db976d7780c40dd8836eb9f682221ae979614 (patch) | |
tree | 24c27fcbd93bfced8808f86843f8949b69309af8 | |
parent | 0d6283918f3f7cb0ab25111a978b9c09fb5cbca6 (diff) | |
download | nginx-868db976d7780c40dd8836eb9f682221ae979614.tar.gz nginx-868db976d7780c40dd8836eb9f682221ae979614.zip |
fix debug logging
-rw-r--r-- | src/http/modules/ngx_http_split_clients_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_split_clients_module.c b/src/http/modules/ngx_http_split_clients_module.c index a43fac519..0b726f777 100644 --- a/src/http/modules/ngx_http_split_clients_module.c +++ b/src/http/modules/ngx_http_split_clients_module.c @@ -94,7 +94,7 @@ ngx_http_split_clients_variable(ngx_http_request_t *r, for (i = 0; i < ctx->parts.nelts; i++) { ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "%D %D", hash, part[i].percent); + "http split: %uD %uD", hash, part[i].percent); if (hash < part[i].percent) { *v = part[i].value; |