diff options
author | Andrew Gierth <rhodiumtoad@postgresql.org> | 2019-01-07 18:19:46 +0000 |
---|---|---|
committer | Andrew Gierth <rhodiumtoad@postgresql.org> | 2019-01-07 18:54:19 +0000 |
commit | 93fedda6f093ca0b47a27b91f3008afc43c49bcc (patch) | |
tree | 9232100387472bcf19aa9b783f039f09773acebd | |
parent | be2e329f2e700032df087e08ac2103ba3d1fa811 (diff) | |
download | postgresql-93fedda6f093ca0b47a27b91f3008afc43c49bcc.tar.gz postgresql-93fedda6f093ca0b47a27b91f3008afc43c49bcc.zip |
doc: document that INFO messages always go to client.
In passing add a couple of links to the message severity table.
Backpatch because it's always been this way.
Author: Karl O. Pinc <kop@meme.com>
-rw-r--r-- | doc/src/sgml/config.sgml | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index e94b305add0..5d723f39212 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -5667,7 +5667,8 @@ local0.* /var/log/postgresql </term> <listitem> <para> - Controls which message levels are written to the server log. + Controls which <link linkend="runtime-config-severity-levels">message + levels</link> are written to the server log. Valid values are <literal>DEBUG5</literal>, <literal>DEBUG4</literal>, <literal>DEBUG3</literal>, <literal>DEBUG2</literal>, <literal>DEBUG1</literal>, <literal>INFO</literal>, <literal>NOTICE</literal>, <literal>WARNING</literal>, @@ -5693,7 +5694,9 @@ local0.* /var/log/postgresql Controls which SQL statements that cause an error condition are recorded in the server log. The current SQL statement is included in the log entry for any message of - the specified severity or higher. + the specified + <link linkend="runtime-config-severity-levels">severity</link> + or higher. Valid values are <literal>DEBUG5</literal>, <literal>DEBUG4</literal>, <literal>DEBUG3</literal>, <literal>DEBUG2</literal>, <literal>DEBUG1</literal>, @@ -7025,7 +7028,9 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; </term> <listitem> <para> - Controls which message levels are sent to the client. + Controls which + <link linkend="runtime-config-severity-levels">message levels</link> + are sent to the client. Valid values are <literal>DEBUG5</literal>, <literal>DEBUG4</literal>, <literal>DEBUG3</literal>, <literal>DEBUG2</literal>, <literal>DEBUG1</literal>, <literal>LOG</literal>, <literal>NOTICE</literal>, @@ -7035,6 +7040,9 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; <literal>NOTICE</literal>. Note that <literal>LOG</literal> has a different rank here than in <xref linkend="guc-log-min-messages"/>. </para> + <para> + <literal>INFO</literal> level messages are always sent to the client. + </para> </listitem> </varlistentry> |