mirror of
https://github.com/nginx/nginx.git
synced 2026-08-31 17:10:58 +00:00
Auth basic: "info" logging level on no user/password.
This isn't an exceptional condition and normally happens on first request from a client.
This commit is contained in:
parent
3d3fa2adc6
commit
869b4f36e5
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ ngx_http_auth_basic_handler(ngx_http_request_t *r)
|
|||
|
||||
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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue