diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-17 20:58:03 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-17 20:58:03 +0000 |
commit | 00a420d53cd5ee665a0662e129a85ce5fd66d010 (patch) | |
tree | e6c2af6864a0b81159a4d54c240bf92af3fe2870 /src | |
parent | bce901af7db4430b9e216c39c8144376c1a31ab4 (diff) | |
download | postgresql-00a420d53cd5ee665a0662e129a85ce5fd66d010.tar.gz postgresql-00a420d53cd5ee665a0662e129a85ce5fd66d010.zip |
Add description of ELOG_TIMESTAMPS and USE_SYSLOG options,
per Massimo Dal Zotto.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/config.h.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index 3ab45d0a73e..ce01ecd0a2f 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -456,4 +456,18 @@ extern void srandom(int seed); */ #define TBL_FREE_CMD_MEMORY +/* + * ELOG_TIMESTAMPS: adds a timestamp with the following format to elog + * messages: yymmdd.hh:mm:ss.mmm [pid] message + */ +/* #define ELOG_TIMESTAMPS */ + +/* + * USE_SYSLOG: use syslog for elog and error messages printed by tprintf + * and eprintf. This must be activated with the syslog flag in pg_options + * (syslog=0 for stdio, syslog=1 for stdio+syslog, syslog=2 for syslog). + * For information see backend/utils/misc/trace.c (Massimo Dal Zotto). + */ +/* #define USE_SYSLOG */ + #endif /* CONFIG_H */ |