#include
#include
-#include
#include
#include
#include
+#include
#include
#include
#include
* Trace option names, must match the constants in trace_opts[].
*/
static char *opt_names[] = {
- "all",
+ "all", /* 0=trace some, 1=trace all, -1=trace none */
"verbose",
"query",
"plan",
"syslog", /* use syslog for error messages */
"hostlookup", /* enable hostname lookup in ps_status */
"showportnumber", /* show port number in ps_status */
+
+ /* NUM_PG_OPTIONS */ /* must be the last item of enum */
};
/*
#ifdef USE_SYSLOG
int log_level;
-
#endif
if ((flag == TRACE_ALL) || (pg_options[TRACE_ALL] > 0))
syslog(level, "%s", line);
}
}
-
#endif
#ifdef ELOG_TIMESTAMPS
tprintf_timestamp()
{
struct timeval tv;
+ struct timezone tz = { 0, 0 };
struct tm *time;
time_t tm;
static char timestamp[32],
pid[8];
- gettimeofday(&tv, DST_NONE);
+ gettimeofday(&tv, &tz);
tm = tv.tv_sec;
time = localtime(&tm);
sprintf(timestamp, "%02d%02d%02d.%02d:%02d:%02d.%03d %7s ",
time->tm_year, time->tm_mon + 1, time->tm_mday,
time->tm_hour, time->tm_min, time->tm_sec,
- tv.tv_usec / 1000, pid);
+ (int) (tv.tv_usec/1000), pid);
return timestamp;
}
-
#endif
#ifdef NOT_USED
* Trace options, used as index into pg_options.
* Must match the constants in pg_options[].
*/
-enum pg_option_enum
-{
- TRACE_ALL, /* 0=trace some, 1=trace all, -1=trace
- * none */
+enum pg_option_enum {
+ TRACE_ALL, /* 0=trace some, 1=trace all, -1=trace none */
TRACE_VERBOSE,
TRACE_QUERY,
TRACE_PLAN,