Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit bd175cc

Browse files
committed
Set log_min_error_messages to the proper and agreed-upon default, PANIC (off).
Backpatch to 7.3.X.
1 parent d42a476 commit bd175cc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/backend/utils/misc/guc.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* command, configuration file, and command line options.
66
* See src/backend/utils/misc/README for more information.
77
*
8-
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.111 2003/01/25 23:10:27 tgl Exp $
8+
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.112 2003/01/27 23:55:38 momjian Exp $
99
*
1010
* Copyright 2000 by PostgreSQL Global Development Group
1111
* Written by Peter Eisentraut <peter_e@gmx.net>.
@@ -101,7 +101,7 @@ bool Australian_timezones = false;
101101

102102
bool Password_encryption = true;
103103

104-
int log_min_error_statement = ERROR;
104+
int log_min_error_statement = PANIC;
105105
char *log_min_error_statement_str = NULL;
106106
const char log_min_error_statement_str_default[] = "panic";
107107

src/backend/utils/misc/postgresql.conf.sample

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134

135135
#log_min_error_statement = error # Values in order of increasing severity:
136136
# debug5, debug4, debug3, debug2, debug1,
137-
# info, notice, warning, error
137+
# info, notice, warning, error, panic(off)
138138

139139
#debug_print_parse = false
140140
#debug_print_rewritten = false

0 commit comments

Comments
 (0)