lemonldap-ng/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Apache2.pm

18 lines
250 B
Perl

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