-
+
Server Configuration
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 NOTICE>. Note that
+ to the log. The default is WARNING>. Note that
LOG> has a different rank here than in
client_min_messages>.
Only superusers can change this setting.
* Written by Peter Eisentraut
.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.434 2008/03/09 04:56:28 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.435 2008/03/10 03:22:29 tgl Exp $
*
*--------------------------------------------------------------------
*/
bool Password_encryption = true;
int log_min_error_statement = ERROR;
-int log_min_messages = NOTICE;
+int log_min_messages = WARNING;
int client_min_messages = NOTICE;
int log_min_duration_statement = -1;
int log_temp_files = -1;
"includes all the levels that follow it.")
},
&log_min_messages_str,
- "notice", assign_log_min_messages, NULL
+ "warning", assign_log_min_messages, NULL
},
{