Re: Add hint message for check_log_destination()

From: Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>
To: Japin Li <japinli(at)hotmail(dot)com>
Cc: jian he <jian(dot)universality(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Add hint message for check_log_destination()
Date: 2023-07-07 08:21:04
Message-ID: CAD21AoBJs9fm87-T8eG_f5qETnJqsERufL8g7fA47hDjY0=f0A@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Fri, Jul 7, 2023 at 4:53 PM Japin Li <japinli(at)hotmail(dot)com> wrote:
>
>
> On Fri, 07 Jul 2023 at 14:46, jian he <jian(dot)universality(at)gmail(dot)com> wrote:
> > On Fri, Jul 7, 2023 at 1:06 PM Japin Li <japinli(at)hotmail(dot)com> wrote:
> >>
> >>
> >> Hi, hackers
> >>
> >> When I try to change log_destination using ALTER SYSTEM with the wrong value,
> >> it complains of the "Unrecognized key word" without available values. This
> >> patch tries to add a hint message that provides available values for
> >> log_destination. Any thoughts?

+1

+ appendStringInfo(&errhint, "\"stderr\"");
+#ifdef HAVE_SYSLOG
+ appendStringInfo(&errhint, ", \"syslog\"");
+#endif
+#ifdef WIN32
+ appendStringInfo(&errhint, ", \"eventlog\"");
+#endif
+ appendStringInfo(&errhint, ", \"csvlog\", and \"jsonlog\"");

I think using appendStringInfoString() is a bit more natural and faster.

Regards,

--
Masahiko Sawada
Amazon Web Services: https://aws.amazon.com

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Yugo NAGATA 2023-07-07 08:21:36 Re: pg_column_toast_chunk_id: a function to get a chunk ID of a TOASTed value
Previous Message Alena Rybakina 2023-07-07 08:20:20 Re: POC, WIP: OR-clause support for indexes