1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-17 06:41:09 +03:00

Fix obsolete comment regarding NOTICE message level.

By default NOTICE message is not sent to server log because
the default value of log_min_messages is WARNING since 8.4.

Pavel Stehule
This commit is contained in:
Fujii Masao
2015-07-09 22:52:36 +09:00
parent c2e5f4d1c1
commit 6ba365aa46

View File

@ -33,8 +33,8 @@
* client regardless of client_min_messages, * client regardless of client_min_messages,
* but by default not sent to server log. */ * but by default not sent to server log. */
#define NOTICE 18 /* Helpful messages to users about query #define NOTICE 18 /* Helpful messages to users about query
* operation; sent to client and server log by * operation; sent to client and not to server
* default. */ * log by default. */
#define WARNING 19 /* Warnings. NOTICE is for expected messages #define WARNING 19 /* Warnings. NOTICE is for expected messages
* like implicit sequence creation by SERIAL. * like implicit sequence creation by SERIAL.
* WARNING is for unexpected messages. */ * WARNING is for unexpected messages. */