Re: PG levels vs. syslog levels

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: PG levels vs. syslog levels
Дата
Msg-id 15438.1190325652@sss.pgh.pa.us
обсуждение исходный текст
Ответ на PG levels vs. syslog levels  (Steve Crawford <scrawford@pinpointresearch.com>)
Список pgsql-general
Steve Crawford <scrawford@pinpointresearch.com> writes:
> What is the correlation between PostgreSQL log severity levels and
> syslog levels?

Hmm, doesn't seem to be documented anywhere, but a look into the source
code finds

        switch (edata->elevel)
        {
            case DEBUG5:
            case DEBUG4:
            case DEBUG3:
            case DEBUG2:
            case DEBUG1:
                syslog_level = LOG_DEBUG;
                break;
            case LOG:
            case COMMERROR:
            case INFO:
                syslog_level = LOG_INFO;
                break;
            case NOTICE:
            case WARNING:
                syslog_level = LOG_NOTICE;
                break;
            case ERROR:
                syslog_level = LOG_WARNING;
                break;
            case FATAL:
                syslog_level = LOG_ERR;
                break;
            case PANIC:
            default:
                syslog_level = LOG_CRIT;
                break;
        }

            regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: "Scott Marlowe"
Дата:
Сообщение: Re: autovacuum
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Adding domain type with CHECK constraints slow on large table