in reply to Re^2: modperl1.99 custom logging
in thread modperl1.99 custom logging

This might not address the original question but something I'm playing with is setting the log variables within a mod_perl handler and then using them from the .httpd.conf. Lots more goodies where this came from at perl.apache.org. Search 2.0 docs for "log."

# in an mp handler $r->notes('SESSION', $some_id_value); # and then in the httpd.conf LogFormat "%h %{SESSION}n %l %u %t \"%r\" %>s %b ...et cetera

Update: mp conf to httpd.conf.

Replies are listed 'Best First'.
Re^4: modperl1.99 custom logging
by ejoffe (Novice) on Jul 22, 2004 at 11:34 UTC
    This looks very promising.. I will try it out, thanks.