Add description of ELOG_TIMESTAMPS and USE_SYSLOG options,

per Massimo Dal Zotto.
This commit is contained in:
Tom Lane 1999-01-17 20:58:03 +00:00
parent bce901af7d
commit 00a420d53c
1 changed files with 14 additions and 0 deletions

View File

@ -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 */