diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-05 23:32:13 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-05 23:32:13 +0000 |
commit | bdf8ef6925de6ea1a9330fa1ce32e1a315d07eb2 (patch) | |
tree | 80d8dd5dd82a93e69e3e0133ffdca0a7c03ea893 /src/include/utils/elog.h | |
parent | b4cd416ab0003483cbf5467974ead4732357b17d (diff) |
Create a built-in log rotation program, so that we no longer have to
recommend that people go get Apache's rotatelogs program. Additional
benefits are that configuration is done through GUC, rather than
externally, and that the postmaster can monitor the log rotator and
restart it after failure (though we certainly hope that won't happen
often).
Andreas Pflug, some rework by Tom Lane.
Diffstat (limited to 'src/include/utils/elog.h')
-rw-r--r-- | src/include/utils/elog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 4a2d26ddb9d..ac27b796249 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.72 2004/07/31 23:04:55 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.73 2004/08/05 23:32:13 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -272,7 +272,7 @@ typedef enum extern PGErrorVerbosity Log_error_verbosity; extern char *Log_line_prefix; -extern unsigned int Log_destination; +extern int Log_destination; /* Log destination bitmap */ #define LOG_DESTINATION_STDERR 1 |