diff options
author | Michael Paquier <michael@paquier.xyz> | 2025-02-02 11:31:31 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2025-02-02 11:31:31 +0900 |
commit | 061994fb31480e65c30f8747e8dcc55935174f4a (patch) | |
tree | 20f820c9b348d8fdf8f082325ddc3daee2b65311 /src | |
parent | 3f14a6d84db2f21b5d61855c1df1943f7e95222b (diff) | |
download | postgresql-061994fb31480e65c30f8747e8dcc55935174f4a.tar.gz postgresql-061994fb31480e65c30f8747e8dcc55935174f4a.zip |
Mention jsonlog in description of logging_collector in GUC table
logging_collector was only mentioning stderr and csvlog, and forgot
about jsonlog. Oversight in dc686681e079, that has added support for
jsonlog in log_destination.
While on it, the description in the GUC table is tweaked to be more
consistent with the documentation and postgresql.conf.sample.
Author: Umar Hayat
Reviewed-by: Ashutosh Bapat, Tom Lane
Discussion: https://postgr.es/m/CAD68Dp1K_vBYqBEukHw=1jF7e76t8aszGZTFL2ugi=H7r=a7MA@mail.gmail.com
Backpatch-through: 13
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index b733e692de8..e5600862d7f 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -1815,7 +1815,7 @@ static struct config_bool ConfigureNamesBool[] = }, { {"logging_collector", PGC_POSTMASTER, LOGGING_WHERE, - gettext_noop("Start a subprocess to capture stderr output and/or csvlogs into log files."), + gettext_noop("Start a subprocess to capture stderr, csvlog and/or jsonlog into log files."), NULL }, &Logging_collector, |