# HG changeset patch # User Igor Sysoev # Date 1305281216 0 # Node ID eccd0b66a4abd14b51b2a8b68ff4d51d38b0cfe9 # Parent 2a70484a65802a696c4ef2549683366d03986846 fix debug logging diff --git a/src/http/modules/ngx_http_split_clients_module.c b/src/http/modules/ngx_http_split_clients_module.c --- 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 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;