diff options
author | Michael Paquier <michael@paquier.xyz> | 2025-02-02 11:31:29 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2025-02-02 11:31:29 +0900 |
commit | f07ebd54a304002c7ae289cddb5666e03f32fcd2 (patch) | |
tree | e2b9b7f1a1c679c5b611a0ca3ac3a63e59907ea7 /src | |
parent | 2f9b769b3098556199445c98e15e0cb7174ea943 (diff) | |
download | postgresql-f07ebd54a304002c7ae289cddb5666e03f32fcd2.tar.gz postgresql-f07ebd54a304002c7ae289cddb5666e03f32fcd2.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_tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c index c029bd176d1..ab97dea63c4 100644 --- a/src/backend/utils/misc/guc_tables.c +++ b/src/backend/utils/misc/guc_tables.c @@ -1630,7 +1630,7 @@ 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, |