From 868db976d7780c40dd8836eb9f682221ae979614 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 13 May 2011 10:06:56 +0000 Subject: [PATCH] fix debug logging --- src/http/modules/ngx_http_split_clients_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;