[Catalyst] C::P::Authentication - user not found debug info

Matt Lawrence matt.lawrence at ymogen.net
Tue Dec 11 13:01:36 GMT 2007


Tobias Kremer wrote:
> Hey all,
>
> my log files are filling up with the following warning
>
> "[debug] Unable to locate user matching user info provided"
>
> This info is both annoying and not really helpful IMHO.
>
> I found out that it's issued via $c->log->debug() and immediately wondered
> why this produces output even when using catalyst in non-debug mode?
>   
Debugging in the logger is orthogonal to debugging in the application,
AFAIK.

$c->log->disable('debug', 'info');

or

$c->log->levels(qw( warn error fatal ));

Assuming you're using the default Catalyst::Log logger.

Matt



More information about the Catalyst mailing list