hi I want to only show certain log messages to my console based on the
log level 'debug'
I believe catalyst supports log levels, but this doesn't seem to be working
if ( $c->is_debug() )
{
$c->log("log message here..");
}
It seems to be sending the log message no matter if ( $c->is_fatal() )
I even start the server with myapp_server.pl -d debug
What am I missing here does catalyst only have debug log level or not
debug log level and not log levels in general?
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/