Hello, Can I use the log_config_module (mod_log_config.so) with PerlProcessConnectionHandler somehow? Or do I have to use my own implementation? After running the attached config, I expected to see some content both in test_log and test_log2... -- Radosław Zieliński <suppressed>
LoadModule perl_module /usr/lib/apache/mod_perl.so
LoadModule log_config_module /usr/lib/apache/mod_log_config.so
Listen localhost:55555
ServerName localhost
PidFile test.pid
LogLevel debug
CustomLog test_log "%t %a"
SetHandler modperl
PerlOptions +Log
PerlProcessConnectionHandler FooConn
PerlLogHandler FooLog
<Perl>
use Apache2::Const -compile => qw(OK);
use Apache2::Connection ();
use APR::Socket ();
sub FooConn::handler {
my $c = shift;
$c->client_socket->send("pid $$\n");
return Apache2::Const::OK;
}
sub FooLog::handler {
open my $log, '>>', 'test_log2' or die $!;
print $log join "\t", $$, time, @_;
close $log or warn $!;
return Apache2::Const::OK;
}
</Perl>
# vim: filetype=apache ts=2 sw=2 et
Attachment:
pgpbfJZyP7wWa.pgp
Description: PGP signature
Mail converted by mhonarc 2.6.15
This archive provided courtesy of JSW4.NET, Internet Hosting Services for Small Business.