From 414c7a537e6c8a7916700dd22ef78e6ffea39e2a Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 21 Nov 2006 01:23:37 +0000 Subject: Change the default setting for log_min_error_statement to ERROR. Per recent discussion in which majority opinion was that this is a more widely useful setting than the previous default of PANIC. --- src/backend/utils/misc/postgresql.conf.sample | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/backend/utils/misc/postgresql.conf.sample') diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 3a0dedba672..196cae54a36 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -284,7 +284,7 @@ #log_error_verbosity = default # terse, default, or verbose messages -#log_min_error_statement = panic # Values in order of increasing severity: +#log_min_error_statement = error # Values in order of increasing severity: # debug5 # debug4 # debug3 @@ -294,7 +294,8 @@ # notice # warning # error - # panic(off) + # fatal + # panic (effectively off) #log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements # and their durations. -- cgit v1.2.3