From: Bruce Momjian Date: Tue, 28 Jan 2003 03:44:09 +0000 (+0000) Subject: Revert off setting mention for client_min_messages. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=240dfecce1246dbabbee616e4e49e4f281ceba26;p=users%2Fbernd%2Fpostgres.git Revert off setting mention for client_min_messages. Set log_min_error_messages to the proper and agreed-upon default, PANIC (off). (BACKPATCH) --- diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index e177a4c059..efa9dae0d2 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -101,7 +101,7 @@ bool Australian_timezones = false; bool Password_encryption = true; -int log_min_error_statement = ERROR; +int log_min_error_statement = PANIC; char *log_min_error_statement_str = NULL; const char log_min_error_statement_str_default[] = "panic"; diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 8afe9da700..86183deb40 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -129,7 +129,7 @@ #log_min_error_statement = error # Values in order of increasing severity: # debug5, debug4, debug3, debug2, debug1, - # info, notice, warning, error + # info, notice, warning, error, panic(off) #debug_print_parse = false #debug_print_rewritten = false