Re: Apache1 and own ErrorLog-Handler?

2004-10-08 Thread Jeff Trawick
On Fri, 8 Oct 2004 12:07:45 +0200, Timo Eckert <[EMAIL PROTECTED]> wrote:
> On Fri, 8 Oct 2004 05:46:29 -0400
> Jeff Trawick <[EMAIL PROTECTED]> wrote:
> 
> > > is it possible on Apache1 to "pipe" the Error-Logs to an own
> > > handler?
> >
> > no; unlike Apache 2, Apache 1.3 has no such capability
> 
> Ok,
> 
> where have i to search in the source, that ErrorLog-Filenames
> will be parsed through strftime(); ?

the log record is actually written somewhere in src/main/http_log.c;
the function is called log_error_core()

that code would need to be modified if you wanted to add a new type of
action to take with the final log message


Re: Apache1 and own ErrorLog-Handler?

2004-10-08 Thread Timo Eckert
On Fri, 8 Oct 2004 05:46:29 -0400
Jeff Trawick <[EMAIL PROTECTED]> wrote:

> > is it possible on Apache1 to "pipe" the Error-Logs to an own
> > handler?
> 
> no; unlike Apache 2, Apache 1.3 has no such capability

Ok,

where have i to search in the source, that ErrorLog-Filenames
will be parsed through strftime(); ?

Regards,
Timo.


Re: Apache1 and own ErrorLog-Handler?

2004-10-08 Thread Jeff Trawick
On Fri, 8 Oct 2004 11:30:46 +0200, Timo Eckert <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> is it possible on Apache1 to "pipe" the Error-Logs to an own handler?

no; unlike Apache 2, Apache 1.3 has no such capability