diff options
author | Michael Paquier <michael@paquier.xyz> | 2024-09-04 13:50:44 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2024-09-04 13:50:44 +0900 |
commit | b4db64270e0c18f72c9c7bf214c809949875a85a (patch) | |
tree | 92fa021b8bcfec010c7ddb8347dd907b46545452 /src/backend/postmaster/checkpointer.c | |
parent | 6c2b5edecc0d6c936e27775c9451d32bb3141c90 (diff) |
Apply more quoting to GUC names in messages
This is a continuation of 17974ec25946. More quotes are applied to
GUC names in error messages and hints, taking care of what seems to be
all the remaining holes currently in the tree for the GUCs.
Author: Peter Smith
Discussion: https://postgr.es/m/CAHut+Pv-kSN8SkxSdoHano_wPubqcg5789ejhCDZAcLFceBR-w@mail.gmail.com
Diffstat (limited to 'src/backend/postmaster/checkpointer.c')
-rw-r--r-- | src/backend/postmaster/checkpointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/checkpointer.c b/src/backend/postmaster/checkpointer.c index 199f008bcda..eeb73c85726 100644 --- a/src/backend/postmaster/checkpointer.c +++ b/src/backend/postmaster/checkpointer.c @@ -663,7 +663,7 @@ CheckArchiveTimeout(void) * assume nothing happened. */ if (XLogSegmentOffset(switchpoint, wal_segment_size) != 0) - elog(DEBUG1, "write-ahead log switch forced (archive_timeout=%d)", + elog(DEBUG1, "write-ahead log switch forced (\"archive_timeout\"=%d)", XLogArchiveTimeout); } |