From: Charles McGarvey Date: Thu, 13 Oct 2011 03:53:59 +0000 (-0600) Subject: add stacktrace plugin for easier debugging X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fchatty;a=commitdiff_plain;h=be80dc411dc33c6042f63671ae036b23eed33972 add stacktrace plugin for easier debugging --- diff --git a/Makefile.PL b/Makefile.PL index 8c9e7c8..765aa5a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,6 +11,7 @@ all_from 'lib/Chatty.pm'; requires 'Catalyst::Runtime' => '5.90002'; requires 'Catalyst::Plugin::ConfigLoader'; +requires 'Catalyst::Plugin::StackTrace'; requires 'Catalyst::Plugin::Static::Simple'; requires 'Catalyst::Action::RenderView'; requires 'Moose'; diff --git a/lib/Chatty.pm b/lib/Chatty.pm index ee849cc..0de57fd 100644 --- a/lib/Chatty.pm +++ b/lib/Chatty.pm @@ -19,6 +19,7 @@ use Catalyst::Runtime 5.80; use Catalyst qw/ -Debug ConfigLoader + StackTrace Static::Simple /;