diff options
author | Igor Sysoev <igor@sysoev.ru> | 2005-07-25 09:41:38 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2005-07-25 09:41:38 +0000 |
commit | 90c081478175a94a995f8b4341c968c0395161b1 (patch) | |
tree | 6fef5fa6d488ed1ba47f0581876d56bf9c16db42 /src/os/unix/ngx_freebsd_init.c | |
parent | 9e7984ca78d0a8c39155dd24c8fe0f9a3765a51d (diff) | |
download | nginx-90c081478175a94a995f8b4341c968c0395161b1.tar.gz nginx-90c081478175a94a995f8b4341c968c0395161b1.zip |
nginx-0.1.40-RELEASE importrelease-0.1.40
*) Bugfix: if a client sent too long header line, then the request
information did not logged in the error log.
*) Bugfix: the "Set-Cookie" header line was not transferred when the
"X-Accel-Redirect" was used; the bug had appeared in 0.1.39.
*) Bugfix: the "Content-Disposition" header line was not transferred
when the "X-Accel-Redirect" was used.
*) Bugfix: the master process did not close the listen socket on the
SIGQUIT signal.
*) Bugfix: after on-line upgrade on Linux and Solaris the process name
became shorter in the "ps" command.
Diffstat (limited to 'src/os/unix/ngx_freebsd_init.c')
-rw-r--r-- | src/os/unix/ngx_freebsd_init.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/os/unix/ngx_freebsd_init.c b/src/os/unix/ngx_freebsd_init.c index 7defb4676..ab002ae29 100644 --- a/src/os/unix/ngx_freebsd_init.c +++ b/src/os/unix/ngx_freebsd_init.c @@ -232,22 +232,22 @@ void ngx_os_status(ngx_log_t *log) { ngx_uint_t i; - ngx_log_error(NGX_LOG_INFO, log, 0, "OS: %s %s", + ngx_log_error(NGX_LOG_NOTICE, log, 0, "OS: %s %s", ngx_freebsd_kern_ostype, ngx_freebsd_kern_osrelease); #ifdef __DragonFly_version - ngx_log_error(NGX_LOG_INFO, log, 0, + ngx_log_error(NGX_LOG_NOTICE, log, 0, "kern.osreldate: %d, built on %d", ngx_freebsd_kern_osreldate, __DragonFly_version); #else - ngx_log_error(NGX_LOG_INFO, log, 0, + ngx_log_error(NGX_LOG_NOTICE, log, 0, "kern.osreldate: %d, built on %d", ngx_freebsd_kern_osreldate, __FreeBSD_version); #endif for (i = 0; sysctls[i].name; i++) { if (sysctls[i].exists) { - ngx_log_error(NGX_LOG_INFO, log, 0, "%s: %d", + ngx_log_error(NGX_LOG_NOTICE, log, 0, "%s: %d", sysctls[i].name, *sysctls[i].value); } } |