Re: Add hint message for check_log_destination()

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: Japin Li <japinli(at)hotmail(dot)com>
Cc: Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>, 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-08 04:48:49
Message-ID: ZKjqsaFuRLJADLRt@paquier.xyz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

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?
--
Michael

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Paul A Jungwirth 2023-07-08 05:24:27 Re: Check lateral references within PHVs for memoize cache keys
Previous Message Michael Paquier 2023-07-08 04:41:13 Re: Add more sanity checks around callers of changeDependencyFor()