You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2005/12/10 19:08:37 UTC

svn commit: r355759 - /incubator/roller/trunk/src/org/roller/presentation/RollerRequest.java

Author: agilliland
Date: Sat Dec 10 10:08:33 2005
New Revision: 355759

URL: http://svn.apache.org/viewcvs?rev=355759&view=rev
Log:
removed INFO level logging line that says "Invalid PathInfo: ..."  This message is thrown in a RollerException, so we can let the handler of that exception report it if they want.  Otherwise this message floods the logs on sites with large numbers of users.


Modified:
    incubator/roller/trunk/src/org/roller/presentation/RollerRequest.java

Modified: incubator/roller/trunk/src/org/roller/presentation/RollerRequest.java
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/src/org/roller/presentation/RollerRequest.java?rev=355759&r1=355758&r2=355759&view=diff
==============================================================================
--- incubator/roller/trunk/src/org/roller/presentation/RollerRequest.java (original)
+++ incubator/roller/trunk/src/org/roller/presentation/RollerRequest.java Sat Dec 10 10:08:33 2005
@@ -292,7 +292,6 @@
         if ( mWebsite==null || mPage==null )
         {            
             String msg = "Invalid pathInfo: "+StringUtils.join(pathInfo,"|");
-            mLogger.info(msg);                       
             throw new RollerException(msg);
         }
     }