|
NAMEDancer::Debug - Extend Plack::Middleware::Debug with some specific panels for Dancer VERSIONversion 0.04 SYNOPSISYou can activate the panels in your development configuration file: plack_middlewares:
Debug:
- panels
-
- Parameters
- Dancer::Version
- Dancer::Settings
- Dancer::Logger
- Dancer::Routes
or in your app.psgi: $handler = builder {
enable "Debug",
panels => [qw/Dancer::Settings Dancer::Logger Parameters Dancer::Version/];
$handler;
};
DESCRIPTIONDancer::Debug extends Plack::Middleware::Debug with some specific panels for Dancer. MAINTAINERDancer Core Team AUTHORfranck cuny <franck@lumberjaph.net> COPYRIGHT AND LICENSEThis 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.
|