Re: Syslog Facility Patch

From: Larry Rosenman <ler(at)lerctr(dot)org>
To: PostgreSQL Hackers List <pgsql-hackers(at)postgresql(dot)org>
Cc: Peter Eisentraut <peter_e(at)gmx(dot)net>
Subject: Re: Syslog Facility Patch
Date: 2000-11-14 13:13:00
Message-ID: 20001114071300.A11549@lerami.lerctr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

* Peter Eisentraut <peter_e(at)gmx(dot)net> [001113 23:52]:
> Okay, but you can't make these options PGC_SIGHUP unless you make sure to
> close and re-open the syslog channel whenever these options
> change. Probably ought to be PGC_POSTMASTER.
Here is a patch to change to PGC_POSTMASTER...

Index: guc.c
===================================================================
RCS file: /home/projects/pgsql/cvsroot/pgsql/src/backend/utils/misc/guc.c,v
retrieving revision 1.19
diff -c -r1.19 guc.c
*** guc.c 2000/11/14 01:15:02 1.19
--- guc.c 2000/11/14 13:11:33
***************
*** 309,317 ****
{"unix_socket_group", PGC_POSTMASTER, &Unix_socket_group,
"", NULL},
#ifdef ENABLE_SYSLOG
! {"syslog_facility", PGC_SIGHUP, &Syslog_facility,
"LOCAL0", check_facility},
! {"syslog_progid", PGC_SIGHUP, &Syslog_progid,
"postgres", NULL},
#endif

--- 309,317 ----
{"unix_socket_group", PGC_POSTMASTER, &Unix_socket_group,
"", NULL},
#ifdef ENABLE_SYSLOG
! {"syslog_facility", PGC_POSTMASTER, &Syslog_facility,
"LOCAL0", check_facility},
! {"syslog_progid", PGC_POSTMASTER, &Syslog_progid,
"postgres", NULL},
#endif

--
Larry Rosenman http://www.lerctr.org/~ler
Phone: +1 972-414-9812 (voice) Internet: ler(at)lerctr(dot)org
US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2000-11-14 15:39:06 Re: SearchSysCacheTuple(Copy)
Previous Message Larry Rosenman 2000-11-14 13:09:13 Re: Syslog Facility Patch