sman has asked for the wisdom of the Perl Monks concerning the following question:
use Catalyst qw/Authentication/;
my $status = $c->authenticate(
{
username => $username,
password => $password
}
);
but no need to load Catalyst::Log when I use log like the following:
$c->log->debug('test')
Does that mean Catalyst context ($c) comes with some default loaded modules like Catalyst::Log ?
Where can I get a document listing such default loaded modules?
Thanks a lot in advance.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: A question of Catalyst
by FalseVinylShrub (Chaplain) on Jan 18, 2010 at 07:43 UTC | |
by sman (Beadle) on Jan 18, 2010 at 19:59 UTC | |
by Khen1950fx (Canon) on Jan 19, 2010 at 20:27 UTC | |
|
Re: A question of Catalyst
by Khen1950fx (Canon) on Jan 18, 2010 at 07:36 UTC |