forked from pool/postgresql14
* Repair ABI break for extensions that work with struct ResultRelInfo. * Restore functionality of ALTER {ROLE|DATABASE} SET role * Fix cases where a logical replication slot's restart_lsn could go backwards. * Avoid deleting still-needed WAL files during pg_rewind. * Count index scans in contrib/bloom indexes in the statistics views, such as the pg_stat_user_indexes.idx_scan counter. * Fix crash when checking to see if an index's opclass options have changed. * Avoid assertion failure caused by disconnected NFA sub-graphs in regular expression parsing. * https://www.postgresql.org/about/news/p-2965/ * https://www.postgresql.org/docs/release/14.15/ OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql14?expand=0&rev=78
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
Index: src/backend/utils/misc/postgresql.conf.sample
|
|
===================================================================
|
|
--- src/backend/utils/misc/postgresql.conf.sample.orig
|
|
+++ src/backend/utils/misc/postgresql.conf.sample
|
|
@@ -430,13 +430,13 @@
|
|
|
|
# - Where to Log -
|
|
|
|
-#log_destination = 'stderr' # Valid values are combinations of
|
|
+log_destination = 'stderr' # Valid values are combinations of
|
|
# stderr, csvlog, syslog, and eventlog,
|
|
# depending on platform. csvlog
|
|
# requires logging_collector to be on.
|
|
|
|
# This is used when logging to stderr:
|
|
-#logging_collector = off # Enable capturing of stderr and csvlog
|
|
+logging_collector = on # Enable capturing of stderr and csvlog
|
|
# into log files. Required to be on for
|
|
# csvlogs.
|
|
# (change requires restart)
|
|
@@ -540,6 +540,7 @@
|
|
#log_error_verbosity = default # terse, default, or verbose messages
|
|
#log_hostname = off
|
|
#log_line_prefix = '%m [%p] ' # special values:
|
|
+log_line_prefix = '%m %d %u [%p]'
|
|
# %a = application name
|
|
# %u = user name
|
|
# %d = database name
|