Apache2::Log - logging to error_log instead of stdout

2007-09-28 Thread Torsten Krah
When my filter is installed, i want to log some message to the server Log, like: [Fri Sep 28 15:23:27 2007] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) I thought i can use this: sub DIR_CREATE { my $s = Apache2::ServerUtil->server; $s->log_serror( Apache2::Log::LOG

Re: Apache2::Log - logging to error_log instead of stdout

2007-09-30 Thread Philippe M. Chiasson
Torsten Krah wrote: > When my filter is installed, i want to log some message to the server Log, > like: > > [Fri Sep 28 15:23:27 2007] [notice] suEXEC mechanism enabled > (wrapper: /usr/sbin/suexec) > > > I thought i can use this: > > sub DIR_CREATE { > my $s = Apache2::ServerUtil->serv

Re: Apache2::Log - logging to error_log instead of stdout

2007-09-30 Thread Torsten Krah
Am Sonntag, 30. September 2007 schrieb Philippe M. Chiasson: > Why not just report the module is available at startup, and report > it's being used at run time from within an actual handler, not > configuration hooks. Good idea. The second a got a idea how to "do", but the first - thats what i wan