aboutsummaryrefslogtreecommitdiffstats
path: root/app.psgi
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2017-08-30 14:08:39 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2017-09-01 16:29:10 +0100
commit9bd69b75c8b84f0173eefe32c39ec0f4b934e53b (patch)
tree4d791fc8f3b5eba4629fbab86300e712d84ca789 /app.psgi
parent07d3568a02b5efb4286bccd9f869c8e1605928b5 (diff)
Add template debug panel.
Use a small subclass of (our) P::M::D::Template to have better display of our template path names.
Diffstat (limited to 'app.psgi')
-rw-r--r--app.psgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.psgi b/app.psgi
index f19069042..cf88b8473 100644
--- a/app.psgi
+++ b/app.psgi
@@ -8,7 +8,7 @@ use Catalyst::Utils;
my $app = FixMyStreet::App->apply_default_middlewares(FixMyStreet::App->psgi_app);
builder {
- enable 'Debug', panels => [ qw(Parameters Response DBIC::QueryLog CatalystLog Timer Memory) ]
+ enable 'Debug', panels => [ qw(Parameters Response DBIC::QueryLog CatalystLog Timer Memory FixMyStreet::Template) ]
if Catalyst::Utils::env_value( 'FixMyStreet::App', 'DEBUG' );
$app;