comparison src/http/ngx_http_script.c @ 845:eb5cf273e5d2

debug log should not be under rewrite_log control
author Igor Sysoev <igor@sysoev.ru>
date Tue, 14 Nov 2006 12:45:03 +0000
parents 1be87cdd010f
children a9715f8f17a5
comparison
equal deleted inserted replaced
844:9ddb57468082 845:eb5cf273e5d2
421 } 421 }
422 422
423 e->ip += sizeof(ngx_http_script_copy_code_t) 423 e->ip += sizeof(ngx_http_script_copy_code_t)
424 + ((code->len + sizeof(uintptr_t) - 1) & ~(sizeof(uintptr_t) - 1)); 424 + ((code->len + sizeof(uintptr_t) - 1) & ~(sizeof(uintptr_t) - 1));
425 425
426 if (e->log) { 426 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, e->request->connection->log, 0,
427 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, e->request->connection->log, 0, 427 "http script copy: \"%V\"", &e->buf);
428 "http script copy: \"%V\"", &e->buf);
429 }
430 } 428 }
431 429
432 430
433 size_t 431 size_t
434 ngx_http_script_copy_var_len_code(ngx_http_script_engine_t *e) 432 ngx_http_script_copy_var_len_code(ngx_http_script_engine_t *e)
475 } 473 }
476 474
477 if (value && !value->not_found) { 475 if (value && !value->not_found) {
478 e->pos = ngx_copy(e->pos, value->data, value->len); 476 e->pos = ngx_copy(e->pos, value->data, value->len);
479 477
480 if (e->log) { 478 ngx_log_debug1(NGX_LOG_DEBUG_HTTP,
481 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, 479 e->request->connection->log, 0,
482 e->request->connection->log, 0, 480 "http script var: \"%V\"", &e->buf);
483 "http script var: \"%V\"", &e->buf);
484 }
485 } 481 }
486 } 482 }
487 } 483 }
488 484
489 485