# HG changeset patch # User Maxim Dounin # Date 1383177741 -14400 # Node ID c37f34bda5eafd4570148bd1a6b0d32ab55ced25 # Parent c52a761a202900cca3b31bf490c51a18a5e5e703 Auth basic: "info" logging level on no user/password. This isn't an exceptional condition and normally happens on first request from a client. diff -r c52a761a2029 -r c37f34bda5ea src/http/modules/ngx_http_auth_basic_module.c --- a/src/http/modules/ngx_http_auth_basic_module.c Mon Oct 28 15:01:36 2013 -0700 +++ b/src/http/modules/ngx_http_auth_basic_module.c Thu Oct 31 04:02:21 2013 +0400 @@ -137,7 +137,7 @@ if (rc == NGX_DECLINED) { - ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, + ngx_log_error(NGX_LOG_INFO, r->connection->log, 0, "no user/password was provided for basic authentication"); return ngx_http_auth_basic_set_realm(r, &realm);