From: Caleb Cushing Date: Wed, 17 Mar 2010 22:52:21 +0000 (+0000) Subject: Make debug message clear for users of progressive realms X-Git-Tag: v0.10017~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Authentication.git;a=commitdiff_plain;h=29bd517d80e3e19d7424601b448689e155d73d31 Make debug message clear for users of progressive realms --- diff --git a/lib/Catalyst/Authentication/Credential/Password.pm b/lib/Catalyst/Authentication/Credential/Password.pm index f08fa4c..84f254f 100644 --- a/lib/Catalyst/Authentication/Credential/Password.pm +++ b/lib/Catalyst/Authentication/Credential/Password.pm @@ -46,7 +46,10 @@ sub authenticate { 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; } }