summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_log.c
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2018-03-05 17:32:50 +0300
committerValentin Bartenev <vbart@nginx.com>2018-03-05 17:32:50 +0300
commit912a49c6091c1fd9b630d2e0966f0fe1b97a3e42 (patch)
tree5581735807436384796dfd9deff336865c8372e4 /src/nxt_log.c
parentf2090bce21e4fb47d11f992a76ef5c4da74c3233 (diff)
downloadunit-912a49c6091c1fd9b630d2e0966f0fe1b97a3e42.tar.gz
unit-912a49c6091c1fd9b630d2e0966f0fe1b97a3e42.tar.bz2
Reduced number of critical log levels.
Diffstat (limited to '')
-rw-r--r--src/nxt_log.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nxt_log.c b/src/nxt_log.c
index cd2b5d70..992c3205 100644
--- a/src/nxt_log.c
+++ b/src/nxt_log.c
@@ -20,10 +20,8 @@ nxt_log_t nxt_main_log = {
};
-nxt_str_t nxt_log_levels[8] = {
- nxt_string("emerg"),
+nxt_str_t nxt_log_levels[6] = {
nxt_string("alert"),
- nxt_string("crit"),
nxt_string("error"),
nxt_string("warn"),
nxt_string("notice"),
@@ -102,7 +100,7 @@ nxt_log_handler(nxt_uint_t level, nxt_log_t *log, const char *fmt, ...)
(void) nxt_write_console(nxt_stderr, msg, p - msg);
- if (level <= NXT_LOG_ALERT) {
+ if (level == NXT_LOG_ALERT) {
*(p - NXT_LINEFEED_SIZE) = '\0';
/*