[Jifty-commit] r3533 - jifty/trunk/lib/Jifty/Plugin/Debug

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Tue Jun 19 19:05:52 EDT 2007


Author: clkao
Date: Tue Jun 19 19:05:52 2007
New Revision: 3533

Modified:
   jifty/trunk/lib/Jifty/Plugin/Debug/Dispatcher.pm

Log:
info rather than debug.

Modified: jifty/trunk/lib/Jifty/Plugin/Debug/Dispatcher.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/Debug/Dispatcher.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/Debug/Dispatcher.pm	Tue Jun 19 19:05:52 2007
@@ -5,7 +5,7 @@
 use Jifty::Dispatcher -base;
 
 on qr'(.*)' => run {
-    Jifty->log->debug("[$$] $1 ".(Jifty->web->current_user->id ? Jifty->web->current_user->username : ''));
+    Jifty->log->info("[$$] $1 ".(Jifty->web->current_user->id ? Jifty->web->current_user->username : ''));
 };
 
 1;


More information about the Jifty-commit mailing list