The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Dancer::Debug - Extend Plack::Middleware::Debug with some specific panels for Dancer

VERSION

version 0.01

SYNOPSIS

You can activate the panels in your development configuration file:

plack_middlewares:
  Debug:
    - panels
    -
      - Parameters
      - Dancer::Version
      - Dancer::Settings
      - Dancer::Logger

or in your app.psgi:

$handler = builder {
    enable "Debug",
        panels => [qw/Dancer::Settings Dancer::Logger Parameters Dancer::Version/];
    $handler;
};

DESCRIPTION

Dancer::Debug extends Plack::Middleware::Debug with some specific panels for Dancer.

AUTHOR

franck cuny <franck@lumberjaph.net>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by franck cuny.

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