Reduced number of critical log levels.

This commit is contained in:
Valentin Bartenev
2018-03-05 17:32:50 +03:00
parent f2090bce21
commit 912a49c609
47 changed files with 403 additions and 534 deletions

View File

@@ -33,7 +33,7 @@ nxt_thread_init_data(nxt_thread_specific_data_t tsd)
err = pthread_key_create(&key, nxt_thread_key_dtor);
if (err != 0) {
nxt_main_log_emerg("pthread_key_create() failed %E", err);
nxt_main_log_alert("pthread_key_create() failed %E", err);
goto fail;
}