Cache: lock timeouts are now logged at info level.
Maxim Dounin
8 years ago
444 | 444 | timer = c->wait_time - ngx_current_msec; |
445 | 445 | |
446 | 446 | if ((ngx_msec_int_t) timer <= 0) { |
447 | ngx_log_debug0(NGX_LOG_DEBUG_HTTP, ev->log, 0, | |
448 | "http file cache lock timeout"); | |
447 | ngx_log_error(NGX_LOG_INFO, ev->log, 0, "cache lock timeout"); | |
449 | 448 | c->lock = 0; |
450 | 449 | goto wakeup; |
451 | 450 | } |