From bbce27c6dd6ddaed3adc5c149b4f7053a62fc119 Mon Sep 17 00:00:00 2001 From: Andrew Gierth Date: Mon, 7 Jan 2019 18:19:46 +0000 Subject: [PATCH] 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 --- doc/src/sgml/config.sgml | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 0c3ccb2b09..f59428f6f2 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -4579,12 +4579,13 @@ local0.* /var/log/postgresql - Controls which message levels are written to the server log. - Valid values are DEBUG5, DEBUG4, - DEBUG3, DEBUG2, DEBUG1, - INFO, NOTICE, WARNING, - ERROR, LOG, FATAL, and - PANIC. Each level includes all the levels that + Controls which message + levels are written to the server log. + Valid values are DEBUG5, DEBUG4, + DEBUG3, DEBUG2, DEBUG1, + INFO, NOTICE, WARNING, + ERROR, LOG, FATAL, and + PANIC. Each level includes all the levels that follow it. The later the level, the fewer messages are sent to the log. The default is WARNING. Note that LOG has a different rank here than in @@ -4605,7 +4606,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 + severity + or higher. Valid values are DEBUG5, DEBUG4, DEBUG3, DEBUG2, DEBUG1, @@ -5905,16 +5908,21 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; - Controls which message levels are sent to the client. - Valid values are DEBUG5, - DEBUG4, DEBUG3, DEBUG2, - DEBUG1, LOG, NOTICE, - WARNING, and ERROR. + Controls which + message levels + are sent to the client. + Valid values are DEBUG5, + DEBUG4, DEBUG3, DEBUG2, + DEBUG1, LOG, NOTICE, + WARNING, and ERROR. Each level includes all the levels that follow it. The later the level, the fewer messages are sent. The default is NOTICE. Note that LOG has a different rank here than in . + + INFO level messages are always sent to the client. +