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

NAME

Plack::Middleware::Debug::TraceENV - debug panel for tracing %ENV

SYNOPSIS

    use Plack::Builder;
    builder {
      enable 'Debug';
      enable 'Debug::TraceENV';
      $app;
    };

DESCRIPTION

Plack::Middleware::Debug::TraceENV is debug panel for watching %ENV.

OPTION

If you use `method` option, you can enable methods only which you want(fetch, store, exists, delete, clear, scalar, firstkey or nextkey).

    enable 'Debug::TraceENV',
      method => [qw/store delete/]; # just enable STORE and DELETE methods

METHOD

prepare_app

see Plack::Middleware::Debug

run

see Plack::Middleware::Debug::Base

REPOSITORY

Plack::Middleware::Debug::TraceENV is hosted on github <http://github.com/bayashi/Plack-Middleware-Debug-TraceENV>

AUTHOR

Dai Okabayashi <bayashi@cpan.org>

SEE ALSO

Plack, Plack::Middleware::Debug

LICENSE

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