Don't inline the Catalyst::Log constructor to avoid a warning on recent Moose.
Florian Ragwitz [Sat, 18 Apr 2009 19:39:17 +0000 (19:39 +0000)]
lib/Catalyst/Log.pm

index 5557066..a131821 100644 (file)
@@ -102,7 +102,7 @@ sub _send_to_log {
 }
 
 no Moose;
-__PACKAGE__->meta->make_immutable();
+__PACKAGE__->meta->make_immutable(inline_constructor => 0);
 
 1;