[Catalyst-commits] r13046 - Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Credential

xenoterracide at dev.catalyst.perl.org xenoterracide at dev.catalyst.perl.org
Wed Mar 17 22:52:21 GMT 2010


Author: xenoterracide
Date: 2010-03-17 22:52:21 +0000 (Wed, 17 Mar 2010)
New Revision: 13046

Modified:
   Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Credential/Password.pm
Log:
Make debug message clear for users of progressive realms

Modified: Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Credential/Password.pm
===================================================================
--- Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Credential/Password.pm	2010-03-17 22:37:09 UTC (rev 13045)
+++ Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Credential/Password.pm	2010-03-17 22:52:21 UTC (rev 13046)
@@ -46,7 +46,10 @@
             return $user_obj;
         }
     } else {
-        $c->log->debug("Unable to locate user matching user info provided") if $c->debug;
+        $c->log->debug(
+            . 'Unable to locate user matching user info provided in realm: '
+            . $realm->name
+            ) if $c->debug;
         return;
     }
 }




More information about the Catalyst-commits mailing list