Re: Add hint message for check_log_destination()

From: Japin Li <japinli(at)hotmail(dot)com>
To: Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>
Cc: Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>, michael(at)paquier(dot)xyz, jian(dot)universality(at)gmail(dot)com, pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: Add hint message for check_log_destination()
Date: 2023-07-14 01:29:42
Message-ID: ME3P282MB1667C247450DC6EFDC99C016B634A@ME3P282MB1667.AUSP282.PROD.OUTLOOK.COM
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


On Thu, 13 Jul 2023 at 16:19, Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com> wrote:
> On Tue, Jul 11, 2023 at 10:24 AM Japin Li <japinli(at)hotmail(dot)com> wrote:
>>
>>
>> On Mon, 10 Jul 2023 at 14:23, Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com> wrote:
>> > On Mon, Jul 10, 2023 at 2:07 PM Kyotaro Horiguchi
>> > <horikyota(dot)ntt(at)gmail(dot)com> wrote:
>> >>
>> >> At Mon, 10 Jul 2023 09:04:42 +0800, Japin Li <japinli(at)hotmail(dot)com> wrote in
>> >> >
>> >> > On Sat, 08 Jul 2023 at 12:48, Michael Paquier <michael(at)paquier(dot)xyz> wrote:
>> >> > > On Fri, Jul 07, 2023 at 07:23:47PM +0800, Japin Li wrote:
>> >> > >> + appendStringInfoString(&errhint, "\"stderr\"");
>> >> > >> +#ifdef HAVE_SYSLOG
>> >> > >> + appendStringInfoString(&errhint, ", \"syslog\"");
>> >> > >> +#endif
>> >> > >> +#ifdef WIN32
>> >> > >> + appendStringInfoString(&errhint, ", \"eventlog\"");
>> >> > >> +#endif
>> >> > >> + appendStringInfoString(&errhint, ", \"csvlog\", and \"jsonlog\"");
>> >> > >
>> >> > > Hmm. Is that OK as a translatable string?
>> >
>> > It seems okay to me but needs to be checked.
>> >
>> >> >
>> >> >
>> >> > Sorry for the late reply! I'm not sure. How can I know whether it is translatable?
>> >>
>> >> At the very least, we can't generate comma-separated lists
>> >> programatically because punctuation marks vary across languages.
>> >>
>> >> One potential approach could involve defining the message for every
>> >> potential combination, in full length.
>> >
>> > Don't we generate a comma-separated list for an error hint of an enum
>> > parameter? For example, to generate the following error hint:
>> >
>> > =# alter system set client_min_messages = 'aaa';
>> > ERROR: invalid value for parameter "client_min_messages": "aaa"
>> > HINT: Available values: debug5, debug4, debug3, debug2, debug1, log,
>> > notice, warning, error.
>> >
>> > we use the comma-separated generated by config_enum_get_options() and
>> > do ereport() like:
>> >
>> > ereport(elevel,
>> > (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
>> > errmsg("invalid value for parameter \"%s\": \"%s\"",
>> > name, value),
>> > hintmsg ? errhint("%s", _(hintmsg)) : 0));
>>
>> > IMO log_destination is a string GUC parameter but its value is the
>> > list of enums. So it makes sense to me to add a hint message like what
>> > we do for enum parameters in case where the user mistypes a wrong
>> > value. I'm not sure why the proposed patch needs to quote the usable
>> > values, though.
>>
>> I borrowed the description from pg_settings extra_desc. In my first patch,
>> I used the hint message line enum parameter, however, since it might be a
>> combination of multiple log destinations, so, I update the patch using
>> extra_desc.
>
> I agree to use description from pg_settings extra_desc, but it seems
> to be better not to quote each available value like we do for enum
> parameter cases. That is, the hint message would be like:
>
> =# alter system set log_destination to 'xxx';
> ERROR: invalid value for parameter "log_destination": "xxx"
> DETAIL: Unrecognized key word: "xxx".
> HINT: Valid values are combinations of stderr, syslog, csvlog, and jsonlog.
>

Agreed. Fixed as per your suggestions.

--
Regrads,
Japin Li

Attachment Content-Type Size
v4-0001-Add-hint-message-for-check_log_destination.patch text/x-diff 1.2 KB

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2023-07-14 02:18:17 Re: 'ERROR: attempted to update invisible tuple' from 'ALTER INDEX ... ATTACH PARTITION' on parent index
Previous Message Dave Cramer 2023-07-14 01:07:39 Re: CommandStatus from insert returning when using a portal.