summaryrefslogtreecommitdiff
path: root/src/bin/pg_upgrade/info.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2024-08-26 14:38:59 +0200
committerPeter Eisentraut <peter@eisentraut.org>2024-08-26 14:38:59 +0200
commit5e58107b0bb5a10b36ba4af4a9f82e6254d75e9f (patch)
treeb371ad9aa8abde44f6a6849fa69543d9b4267d3d /src/bin/pg_upgrade/info.c
parent74e3db06a01d1fe6b9f30f71e05e8438d3aaa37b (diff)
pg_upgrade: Message style improvements
Diffstat (limited to 'src/bin/pg_upgrade/info.c')
-rw-r--r--src/bin/pg_upgrade/info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_upgrade/info.c b/src/bin/pg_upgrade/info.c
index c07a69b63e5..5c041fa06e0 100644
--- a/src/bin/pg_upgrade/info.c
+++ b/src/bin/pg_upgrade/info.c
@@ -829,13 +829,13 @@ print_slot_infos(LogicalSlotInfoArr *slot_arr)
if (slot_arr->nslots == 0)
return;
- pg_log(PG_VERBOSE, "Logical replication slots within the database:");
+ pg_log(PG_VERBOSE, "Logical replication slots in the database:");
for (int slotnum = 0; slotnum < slot_arr->nslots; slotnum++)
{
LogicalSlotInfo *slot_info = &slot_arr->slots[slotnum];
- pg_log(PG_VERBOSE, "slot_name: \"%s\", plugin: \"%s\", two_phase: %s",
+ pg_log(PG_VERBOSE, "slot name: \"%s\", output plugin: \"%s\", two_phase: %s",
slot_info->slotname,
slot_info->plugin,
slot_info->two_phase ? "true" : "false");