> where would an intrepid innocent turn for details on what methods
> and/or fields are available to the PerlLogHandler in the passed
> arglist @_ array (okay, $_[0] or shift) ? 
> 
> apparently
> ->last and
> ->request_time and
> ->status
> ..and $_[0]->last has submethods including
>       get_remote_host,
>       method,
>       the_request,
>       header_in,
>       bytes_sent
> ..what else is available, and what's the documentation called?

$_[0] is the request record, all these methods are Apache methods,
'perldoc Apache' will give you the documentation for them.
->last is a pointer to the last subrequest in the request chain.
Also see http://www.modperl.com/book/chapters/ch9.html but be aware
that the perldoc is more up to date.

--
Eric

Reply via email to