mirror of
https://github.com/postgres/postgres.git
synced 2025-08-24 09:27:52 +03:00
Change default of log_directory to 'log'
The previous default 'pg_log' might have indicated by its "pg_" prefix that it is an internal system directory. The new default is more in line with the typical naming of directories with user-facing log files. Together with the renaming of pg_clog and pg_xlog, this should clear up that difference. Author: Andreas Karlsson <andreas@proxel.se>
This commit is contained in:
@@ -48,9 +48,9 @@ attempted.
|
||||
|
||||
RecursiveCopy::copypath('/some/path', '/empty/dir',
|
||||
filterfn => sub {
|
||||
# omit pg_log and contents
|
||||
# omit log/ and contents
|
||||
my $src = shift;
|
||||
return $src ne 'pg_log';
|
||||
return $src ne 'log';
|
||||
}
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user