[Jifty-commit] r4115 - in jifty/trunk: lib/Jifty/Plugin/REST

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Fri Sep 14 17:36:16 EDT 2007


Author: sartak
Date: Fri Sep 14 17:36:16 2007
New Revision: 4115

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Plugin/REST/Dispatcher.pm

Log:
 r42673 at onn:  sartak | 2007-09-14 17:34:32 -0400
 The REST dispatcher should warn $@ if an error occurs


Modified: jifty/trunk/lib/Jifty/Plugin/REST/Dispatcher.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/REST/Dispatcher.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/REST/Dispatcher.pm	Fri Sep 14 17:36:16 2007
@@ -693,6 +693,7 @@
     eval { $action->run };
 
     if ($@) {
+        Jifty->log->warn($@);
         abort(500);
     }
 


More information about the Jifty-commit mailing list