summaryrefslogtreecommitdiff
path: root/src/backend/commands/vacuumparallel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/commands/vacuumparallel.c')
-rw-r--r--src/backend/commands/vacuumparallel.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/commands/vacuumparallel.c b/src/backend/commands/vacuumparallel.c
index 53a59da2d64..974a29e7a96 100644
--- a/src/backend/commands/vacuumparallel.c
+++ b/src/backend/commands/vacuumparallel.c
@@ -55,7 +55,8 @@
typedef struct PVShared
{
/*
- * Target table relid and log level. These fields are not modified during
+ * Target table relid and log level (for messages about parallel workers
+ * launched during VACUUM VERBOSE). These fields are not modified during
* the parallel vacuum.
*/
Oid relid;
@@ -830,7 +831,7 @@ parallel_vacuum_process_one_index(ParallelVacuumState *pvs, Relation indrel,
ivinfo.index = indrel;
ivinfo.analyze_only = false;
ivinfo.report_progress = false;
- ivinfo.message_level = pvs->shared->elevel;
+ ivinfo.message_level = DEBUG2;
ivinfo.estimated_count = pvs->shared->estimated_count;
ivinfo.num_heap_tuples = pvs->shared->reltuples;
ivinfo.strategy = pvs->bstrategy;