[Catalyst-commits] r6407 - trunk/Catalyst-Runtime/lib/Catalyst/Engine

andyg at dev.catalyst.perl.org andyg at dev.catalyst.perl.org
Fri May 18 06:15:58 GMT 2007


Author: andyg
Date: 2007-05-18 06:15:56 +0100 (Fri, 18 May 2007)
New Revision: 6407

Modified:
   trunk/Catalyst-Runtime/lib/Catalyst/Engine/FastCGI.pm
Log:
Improve the error when we can't load the FCGI module

Modified: trunk/Catalyst-Runtime/lib/Catalyst/Engine/FastCGI.pm
===================================================================
--- trunk/Catalyst-Runtime/lib/Catalyst/Engine/FastCGI.pm	2007-05-17 06:14:37 UTC (rev 6406)
+++ trunk/Catalyst-Runtime/lib/Catalyst/Engine/FastCGI.pm	2007-05-18 05:15:56 UTC (rev 6407)
@@ -3,7 +3,7 @@
 use strict;
 use base 'Catalyst::Engine::CGI';
 eval "use FCGI";
-die "Please install FCGI\n" if $@;
+die "Unable to load the FCGI module, you may need to install it:\n$@\n" if $@;
 
 =head1 NAME
 




More information about the Catalyst-commits mailing list