Skip to content

Commit 632384d

Browse files
committed
doc: Clarify log level for VERBOSE messages in maintenance commands.
VERBOSE messages from ANALYZE, CLUSTER, REINDEX, and VACUUM are logged at the INFO level, but this detail was missing from the documentation. This commit updates the docs to mention the log level for these messages. Author: Masahiro Ikeda Reviewed-by: Yugo Nagata Discussion: https://postgr.es/m/b4a4b7916982dccd9607c8efb3ce5116@oss.nttdata.com
1 parent 3e70da2 commit 632384d

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

doc/src/sgml/ref/analyze.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ANALYZE [ ( <replaceable class="parameter">option</replaceable> [, ...] ) ] [ <r
6565
<term><literal>VERBOSE</literal></term>
6666
<listitem>
6767
<para>
68-
Enables display of progress messages.
68+
Enables display of progress messages at <literal>INFO</literal> level.
6969
</para>
7070
</listitem>
7171
</varlistentry>

doc/src/sgml/ref/cluster.sgml

+2-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ CLUSTER [ ( <replaceable class="parameter">option</replaceable> [, ...] ) ] [ <r
106106
<term><literal>VERBOSE</literal></term>
107107
<listitem>
108108
<para>
109-
Prints a progress report as each table is clustered.
109+
Prints a progress report as each table is clustered
110+
at <literal>INFO</literal> level.
110111
</para>
111112
</listitem>
112113
</varlistentry>

doc/src/sgml/ref/reindex.sgml

+2-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ REINDEX [ ( <replaceable class="parameter">option</replaceable> [, ...] ) ] { DA
194194
<term><literal>VERBOSE</literal></term>
195195
<listitem>
196196
<para>
197-
Prints a progress report as each index is reindexed.
197+
Prints a progress report as each index is reindexed
198+
at <literal>INFO</literal> level.
198199
</para>
199200
</listitem>
200201
</varlistentry>

doc/src/sgml/ref/vacuum.sgml

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ VACUUM [ ( <replaceable class="parameter">option</replaceable> [, ...] ) ] [ <re
129129
<term><literal>VERBOSE</literal></term>
130130
<listitem>
131131
<para>
132-
Prints a detailed vacuum activity report for each table.
132+
Prints a detailed vacuum activity report for each table
133+
at <literal>INFO</literal> level.
133134
</para>
134135
</listitem>
135136
</varlistentry>

0 commit comments

Comments
 (0)