| Test-Environment documentation | Contained in the Test-Environment distribution. |
Test::Environment::Plugin::Apache2::Apache2::Log - fake Apache2::Log for Test::Environment
use Test::Environment qw{
Apache2
};
$request->log->info('no info');
Will add log method to the Apache2::RequestRec.
Returns Log::Log4perl::get_logger().
Jozef Kutej
| Test-Environment documentation | Contained in the Test-Environment distribution. |
package Test::Environment::Plugin::Apache2::Apache2::Log; our $VERSION = '0.06'; 1; package Apache2::Log;
use warnings; use strict; our $VERSION = '0.06'; use Log::Log4perl;
sub Apache2::RequestRec::log { my $self = shift; return Log::Log4perl::get_logger(); } 'tdtdddddt'; __END__