summaryrefslogtreecommitdiffstats
path: root/postgresql-logging.patch
blob: 22a891dddfc8e1af8fd359079996f10e14310a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
diff -Naur postgresql-8.1.0.orig/src/backend/utils/misc/postgresql.conf.sample postgresql-8.1.0/src/backend/utils/misc/postgresql.conf.sample
--- postgresql-8.1.0.orig/src/backend/utils/misc/postgresql.conf.sample	2005-10-08 15:32:58.000000000 -0400
+++ postgresql-8.1.0/src/backend/utils/misc/postgresql.conf.sample	2005-11-07 15:04:13.000000000 -0500
@@ -211,15 +211,15 @@
 					# depending on platform.
 
 # This is used when logging to stderr:
-#redirect_stderr = off			# Enable capturing of stderr into log 
+redirect_stderr = on			# Enable capturing of stderr into log 
 					# files
 
 # These are only used if redirect_stderr is on:
-#log_directory = 'pg_log'		# Directory where log files are written
+log_directory = 'pg_log'		# Directory where log files are written
 					# Can be absolute or relative to PGDATA
-#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # Log file name pattern.
+log_filename = 'postgresql-%a.log'	# Log file name pattern.
 					# Can include strftime() escapes
-#log_truncate_on_rotation = off # If on, any existing log file of the same 
+log_truncate_on_rotation = on	# If on, any existing log file of the same 
 					# name as the new log file will be
 					# truncated rather than appended to. But
 					# such truncation only occurs on
@@ -227,10 +227,10 @@
 					# or size-driven rotation. Default is
 					# off, meaning append to existing files
 					# in all cases.
-#log_rotation_age = 1440		# Automatic rotation of logfiles will 
+log_rotation_age = 1440			# Automatic rotation of logfiles will 
 					# happen after so many minutes.  0 to 
 					# disable.
-#log_rotation_size = 10240		# Automatic rotation of logfiles will 
+log_rotation_size = 0			# Automatic rotation of logfiles will 
 					# happen after so many kilobytes of log
 					# output.  0 to disable.