You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafficserver.apache.org by "Leif Hedstrom (JIRA)" <ji...@apache.org> on 2010/09/28 01:34:33 UTC

[jira] Updated: (TS-407) traffic_server not using proxy.config.syslog_facility

     [ https://issues.apache.org/jira/browse/TS-407?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Leif Hedstrom updated TS-407:
-----------------------------

    Component/s: Core

> traffic_server not using proxy.config.syslog_facility
> -----------------------------------------------------
>
>                 Key: TS-407
>                 URL: https://issues.apache.org/jira/browse/TS-407
>             Project: Traffic Server
>          Issue Type: Bug
>          Components: Core
>            Reporter: Leif Hedstrom
>             Fix For: 2.3.0
>
>
> We have this code in Main.cc:
> static int syslog_facility = LOG_DAEMON;
> // static void syslog_log_configure()
> //
> //   Reads the syslog configuration variable
> //     and sets the global integer for the
> //     facility and calls open log with the
> //     new facility
> //
> static void
> syslog_log_configure()
> {
>   char *facility_str = NULL;
>   int facility;
>   TS_ReadConfigStringAlloc(facility_str, "proxy.config.syslog_facility");
>   if (facility_str == NULL || (facility = facility_string_to_int(facility_str)) < 0) {
>     syslog(LOG_WARNING, "Bad or missing syslog facility.  " "Defaulting to LOG_DAEMON");
>   } else {
>     syslog_facility = facility;
>     closelog();
>     openlog("traffic_server", LOG_PID | LOG_NDELAY | LOG_NOWAIT, facility);
>   }
> }
> But as far as I can tell, we never use syslog_facility.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.