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

NAME

Plack::Middleware::AxsLog - Yet another AccessLog Middleware

SYNOPSIS

use Plack::Builder;

builder {
    enable 'AxsLog',
      combined => 1,
      response_time => 1,
      error_only => 1,
    $app
};

DESCRIPTION

Alternative implementation of Plack::Middleware::AccessLog. This middleware supports response_time and content_length calculation AxsLog also can set condition to display logs by response_time and status code.

Originally, AxsLog was faster AccessLog implementation. But PM::AccessLog became to using same access-log generator module Apache::LogFormat::Compiler. Two middlewares have almost same performance now.

ARGUMENTS

AUTHOR

Masahiro Nagano

SEE ALSO

Plack::Middleware::AccessLog

LICENSE

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