Re: convert elog(LOG) calls to ereport

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема Re: convert elog(LOG) calls to ereport
Дата
Msg-id 41f5c5f7-3611-9bdc-cfad-9f61146419ff@enterprisedb.com
обсуждение исходный текст
Ответ на Re: convert elog(LOG) calls to ereport  (Alvaro Herrera <alvherre@alvh.no-ip.org>)
Ответы Re: convert elog(LOG) calls to ereport  (Michael Paquier <michael@paquier.xyz>)
Список pgsql-hackers
On 2020-12-02 15:04, Alvaro Herrera wrote:
>> -        elog(LOG, "WSAIoctl(SIO_KEEPALIVE_VALS) failed: %ui",
>> -             WSAGetLastError());
>> +        ereport(LOG,
>> +                (errmsg("WSAIoctl(SIO_KEEPALIVE_VALS) failed: %ui",
>> +                        WSAGetLastError())));
> 
> Please take the opportunity to move the flag name out of the message in
> this one, also.

done

> I do wonder if it'd be a good idea to move the syscall
> name itself out of the message, too; that would reduce the number of
> messages to translate 50x to just "%s(%s) failed: %m" instead of one
> message per distinct syscall.

Seems useful, but perhaps as a separate project.

> Should fd.c messages do errcode_for_file_access() like elsewhere?

yes, done



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

Предыдущее
От: Dilip Kumar
Дата:
Сообщение: Re: [HACKERS] Custom compression methods
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: convert elog(LOG) calls to ereport