Re: [DOCS] RAISE INFO and client_min_messages - Mailing list pgsql-docs

From Pavel Luzanov
Subject Re: [DOCS] RAISE INFO and client_min_messages
Date
Msg-id 6d34658f-6fc6-b105-524f-8127356c33e0@postgrespro.ru
Whole thread Raw
In response to Re: [DOCS] RAISE INFO and client_min_messages  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-docs
On 23.03.2017 17:39, Tom Lane wrote:
Pavel Luzanov <p.luzanov@postgrespro.ru> writes:
When working with RAISE statement in PL/pgSQL, I found a strange 
situation with client_min_messages.
According to the documentation, client_min_messages does not include the 
value 'INFO'.
Indeed.  INFO messages cannot be suppressed by client_min_messages.
The reason is that they are emitted by commands like VACUUM VERBOSE,
where (presumably) the entire reason the user said VERBOSE is that
she wanted to see those messages.


Now, the reason for such behavior is clear.

As for me, adding one sentence
to the end of current description for client_min_messages will make sence:

Controls which message levels are sent to the client. Valid values are DEBUG5, DEBUG4, DEBUG3, DEBUG2, DEBUG1, LOG, NOTICE, WARNING, ERROR, FATAL, and PANIC. 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 log_min_messages. Also, messages with INFO level are sent to the client with any value of this parameter.
-----
Pavel Luzanov
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

pgsql-docs by date:

Previous
From: Tom Lane
Date:
Subject: Re: [DOCS] RAISE INFO and client_min_messages
Next
From: Daniel Gustafsson
Date:
Subject: [DOCS] Consistent capitalization of procedural languages