[Catalyst-commits] r6557 - in trunk/Catalyst-Plugin-Authentication:
. lib/Catalyst/Plugin
matthewt at dev.catalyst.perl.org
matthewt at dev.catalyst.perl.org
Tue Jul 17 17:59:00 GMT 2007
Author: matthewt
Date: 2007-07-17 17:59:00 +0100 (Tue, 17 Jul 2007)
New Revision: 6557
Modified:
trunk/Catalyst-Plugin-Authentication/
trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm
Log:
r36209 at cain (orig r6090): jayk | 2007-02-19 19:11:03 +0000
making debug call during setup conditional.
Property changes on: trunk/Catalyst-Plugin-Authentication
___________________________________________________________________
Name: svk:merge
- 4ad37cd2-5fec-0310-835f-b3785c72a374:/branches/Catalyst-Plugin-Authentication:6089
+ 4ad37cd2-5fec-0310-835f-b3785c72a374:/branches/Catalyst-Plugin-Authentication:6090
Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm 2007-07-17 16:58:57 UTC (rev 6556)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm 2007-07-17 16:59:00 UTC (rev 6557)
@@ -222,7 +222,7 @@
sub setup_auth_realm {
my ($app, $realmname, $config) = @_;
- $app->log->debug("Setting up $realmname");
+ $app->log->debug("Setting up auth realm $realmname") if $app->debug;
if (!exists($config->{'store'}{'class'})) {
Carp::croak "Couldn't setup the authentication realm named '$realmname', no class defined";
}
More information about the Catalyst-commits
mailing list