From: Brian Cassidy Date: Mon, 19 Jun 2006 11:17:48 +0000 (+0000) Subject: fixed debug output some X-Git-Tag: v0.1~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-ConfigLoader.git;a=commitdiff_plain;h=172de8aa5b83a799c5a81aa3d5e21ac775853857 fixed debug output some --- diff --git a/Changes b/Changes index 46f31b3..1479b37 100644 --- a/Changes +++ b/Changes @@ -3,6 +3,7 @@ Revision history for Perl extension Catalyst::Plugin::ConfigLoader. 0.1 Mon Jun 12 2006 - remove hash merging since it is now a core behavior - added C/M/V legacy shortcuts + - fixed debug output some 0.09 Wed May 24 2006 - ignore non-ref model/view/controller/component keys diff --git a/lib/Catalyst/Plugin/ConfigLoader.pm b/lib/Catalyst/Plugin/ConfigLoader.pm index f5c416b..930112c 100644 --- a/lib/Catalyst/Plugin/ConfigLoader.pm +++ b/lib/Catalyst/Plugin/ConfigLoader.pm @@ -67,7 +67,7 @@ sub setup { next unless -f $_; my $config = $loader->load( $_ ); - $c->log->debug( "Loaded Config $_" ) if $c->debug; + $c->log->debug( qq(Loaded Config "$_") ) if $c->debug; next if !$config;