# HG changeset patch # User Maxim Dounin # Date 1377281934 -14400 # Node ID 654c1631dc86f082aa57c7f926c4bb7730155855 # Parent 13a5f47658877c4390e542e9b513fc5d9cba6b6b Cache: lock timeouts are now logged at info level. diff --git a/src/http/ngx_http_file_cache.c b/src/http/ngx_http_file_cache.c --- a/src/http/ngx_http_file_cache.c +++ b/src/http/ngx_http_file_cache.c @@ -445,8 +445,7 @@ ngx_http_file_cache_lock_wait_handler(ng timer = c->wait_time - ngx_current_msec; if ((ngx_msec_int_t) timer <= 0) { - ngx_log_debug0(NGX_LOG_DEBUG_HTTP, ev->log, 0, - "http file cache lock timeout"); + ngx_log_error(NGX_LOG_INFO, ev->log, 0, "cache lock timeout"); c->lock = 0; goto wakeup; }