diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-09-23 15:28:33 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-09-23 15:28:33 +0000 |
commit | e5b2d3c6b2a132bbbbac0249566f0da7ff12bc39 (patch) | |
tree | 41790c42dd3f1191a44f300a7afbc5230c874878 /src/core/ngx_connection.c | |
parent | 374944366103293969d86cbcd5eec7362cb46daf (diff) | |
download | nginx-e5b2d3c6b2a132bbbbac0249566f0da7ff12bc39.tar.gz nginx-e5b2d3c6b2a132bbbbac0249566f0da7ff12bc39.zip |
low default connection errors level from alert to error
Diffstat (limited to 'src/core/ngx_connection.c')
-rw-r--r-- | src/core/ngx_connection.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/ngx_connection.c b/src/core/ngx_connection.c index 0a7fe847d..01c205877 100644 --- a/src/core/ngx_connection.c +++ b/src/core/ngx_connection.c @@ -917,12 +917,8 @@ ngx_connection_error(ngx_connection_t *c, ngx_err_t err, char *text) level = NGX_LOG_INFO; break; - case NGX_ERROR_ERR: - level = NGX_LOG_ERR; - break; - default: - level = NGX_LOG_ALERT; + level = NGX_LOG_ERR; } } else { |