diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-03-02 23:37:23 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-03-02 23:37:23 +0000 |
commit | 61c3e5b2486825ee65da322e1408286a8c0d5de6 (patch) | |
tree | fa11fd0d50762edf630370c04bbcd5b79c8129be /src/backend/utils/misc/postgresql.conf.sample | |
parent | 1a7f6302bc044ac2e9027be1f94118e029c64ed9 (diff) | |
download | postgresql-61c3e5b2486825ee65da322e1408286a8c0d5de6.tar.gz postgresql-61c3e5b2486825ee65da322e1408286a8c0d5de6.zip |
Make log_min_error_statement put LOG level at the same priority as
log_min_messages does; and arrange to suppress the duplicative output
that would otherwise result from log_statement and log_duration messages.
Bruce Momjian and Tom Lane.
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 703f5cbaa33..77a86f0020b 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -262,7 +262,7 @@ # - When to Log - -#client_min_messages = notice # Values, in order of decreasing detail: +#client_min_messages = notice # Values in order of decreasing detail: # debug5 # debug4 # debug3 @@ -273,7 +273,7 @@ # warning # error -#log_min_messages = notice # Values, in order of decreasing detail: +#log_min_messages = notice # Values in order of decreasing detail: # debug5 # debug4 # debug3 @@ -289,7 +289,7 @@ #log_error_verbosity = default # terse, default, or verbose messages -#log_min_error_statement = error # Values in order of increasing severity: +#log_min_error_statement = error # Values in order of decreasing detail: # debug5 # debug4 # debug3 @@ -299,11 +299,14 @@ # notice # warning # error + # log # fatal # panic (effectively off) #log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements - # and their durations. + # and their durations, > 0 logs only + # statements running at least N msec. + #silent_mode = off # DO NOT USE without syslog or # redirect_stderr |