diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2011-12-26 11:33:11 +0000 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2011-12-26 11:33:11 +0000 |
commit | 947bdfa7fe9559ccbc9c47a49105d78b9b674a64 (patch) | |
tree | 04c4481cb28a0e913c4e001e189b479d273a4c35 /src | |
parent | da8a43dee95b4b43b59e6fba847208638abbd4b4 (diff) | |
download | nginx-947bdfa7fe9559ccbc9c47a49105d78b9b674a64.tar.gz nginx-947bdfa7fe9559ccbc9c47a49105d78b9b674a64.zip |
Fixed build without debug.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http_file_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http_file_cache.c b/src/http/ngx_http_file_cache.c index d040a5362..dccbbac68 100644 --- a/src/http/ngx_http_file_cache.c +++ b/src/http/ngx_http_file_cache.c @@ -395,7 +395,7 @@ ngx_http_file_cache_lock(ngx_http_request_t *r, ngx_http_cache_t *c) ngx_shmtx_unlock(&cache->shpool->mutex); - ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, + ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "http file cache lock u:%d wt:%M", c->updating, c->wait_time); @@ -437,7 +437,7 @@ ngx_http_file_cache_lock_wait_handler(ngx_event_t *ev) r = ev->data; c = r->cache; - ngx_log_debug0(NGX_LOG_DEBUG_HTTP, ev->log, 0, + ngx_log_debug2(NGX_LOG_DEBUG_HTTP, ev->log, 0, "http file cache wait handler wt:%M cur:%M", c->wait_time, ngx_current_msec); |