The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Log::Any::Adapter::Apache2 - Log::Any adapter for Apache2::Log

SYNOPSIS

    use Log::Any::Adapter ('Apache2');

    or

    use Log::Any::Adapter;
    Log::Any::Adapter->set('Apache2');

DESCRIPTION

This Log::Any adapter uses Apache2::Log for logging. There are no parameters. The logging level is specified in the Apache configuration file.

LOG LEVEL TRANSLATION

Log levels are translated from Log::Any to Apache2::Log as follows:

    trace -> debug;
    warning -> warn;
    critical ->crit;
    emergency -> emerg;

SEE ALSO

LICENSE

Copyright (C) Mikhail Ivanov.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Mikhail Ivanov <m.ivanych@gmail.com>