lemonldap-ng/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Apache2.pm
2017-02-15 06:41:50 +00:00

16 lines
225 B
Perl

package Lemonldap::NG::Common::Logger::Apache2;
use Apache2::ServerRec;
sub new {
return bless {}, shift;
}
sub AUTOLOAD {
shift;
$AUTOLOAD =~ s/.*:://;
return Apache2::ServerRec->log->$AUTOLOAD(@_);
}
1;