summaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/postgresql.conf.sample
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-11-21 01:23:37 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-11-21 01:23:37 +0000
commit414c7a537e6c8a7916700dd22ef78e6ffea39e2a (patch)
treedca4038fb1175689c9faf009a15de72435c76741 /src/backend/utils/misc/postgresql.conf.sample
parente82d9e6283d6ca19d1ea7547e7e9ae8399471e1a (diff)
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.
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample5
1 files changed, 3 insertions, 2 deletions
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.