X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=39cbdea2f5e5e584ee9404179ad5f2bf7b17fd95;hp=278a2f5e29361c6eaa59e9c5d620e2c7e3ee9deb;hb=269194b4f9de3905430a2d1f21f68da13b2b9ed9;hpb=d6ce7d521c72f863c15f376498d53c5409792d7c diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 278a2f5..39cbdea 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -77,6 +77,12 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! our $VERSION = '5.8000_06'; + +{ + my $dev_version = $VERSION =~ /_\d{2}$/; + *_IS_DEVELOPMENT_VERSION = sub () { $dev_version }; +} + $VERSION = eval $VERSION; sub import { @@ -90,7 +96,7 @@ sub import { return if $caller eq 'main'; # Kill Adopt::NEXT warnings if we're a non-RC version - if ($VERSION !~ /_\d{2}$/) { + unless (_IS_DEVELOPMENT_VERSION()) { Class::C3::Adopt::NEXT->unimport(qr/^Catalyst::/); } @@ -840,10 +846,14 @@ L. =head2 $c->debug -Overload to enable debug messages (same as -Debug option). +Returns 1 if debug mode is enabled, 0 otherwise. -Note that this is a static method, not an accessor and should be overloaded -by declaring "sub debug { 1 }" in your MyApp.pm, not by calling $c->debug(1). +You can enable debug mode in several ways: +(1) with the environment variables MYAPP_DEBUG, or CATALYST_DEBUG +(2) the -Debug option in your MyApp.pm +(3) by declaring "sub debug { 1 }" in your MyApp.pm. + +Calling $c->debug(1) has no effect. =cut