From 00a420d53cd5ee665a0662e129a85ce5fd66d010 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 17 Jan 1999 20:58:03 +0000 Subject: [PATCH] Add description of ELOG_TIMESTAMPS and USE_SYSLOG options, per Massimo Dal Zotto. --- src/include/config.h.in | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/include/config.h.in b/src/include/config.h.in index 3ab45d0a73..ce01ecd0a2 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 */ -- 2.40.0