diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-05-07 15:12:01 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-05-07 15:12:01 -0400 |
commit | 17551f1a21fa8e70aa0bca1153de03460742565c (patch) | |
tree | 51b2d74e94532d472bd54083d39152ef17c26d95 /src | |
parent | fbb99e5883d88687de4dbd832c2843f600ab3dd8 (diff) | |
download | postgresql-17551f1a21fa8e70aa0bca1153de03460742565c.tar.gz postgresql-17551f1a21fa8e70aa0bca1153de03460742565c.zip |
Undo extra chattiness of postmaster logs in TAP tests.
Commit 6271fceb8 changed PostgresNode.pm to force log_min_messages = debug1
in all TAP tests, without any discussion and without a concrete need for
it. This makes some of the TAP tests noticeably slower (although much of
that may be due to poorly-written regexes), and for certain it's bloating
the buildfarm logs. Revert the change.
Discussion: https://postgr.es/m/32459.1525657786@sss.pgh.pa.us
Diffstat (limited to 'src')
-rw-r--r-- | src/test/perl/PostgresNode.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm index 3b06e781746..53efb576e03 100644 --- a/src/test/perl/PostgresNode.pm +++ b/src/test/perl/PostgresNode.pm @@ -442,7 +442,6 @@ sub init print $conf "restart_after_crash = off\n"; print $conf "log_line_prefix = '%m [%p] %q%a '\n"; print $conf "log_statement = all\n"; - print $conf "log_min_messages = debug1\n"; print $conf "log_replication_commands = on\n"; print $conf "wal_retrieve_retry_interval = '500ms'\n"; print $conf "port = $port\n"; |