craigmcc 2003/01/30 09:58:14
Modified: src/share/org/apache/struts/action RequestProcessor.java
Log:
Make the per-request logging message happen at DEBUG level, not INFO.
Revision Changes Path
1.24 +7 -7
jakarta-struts/src/share/org/apache/struts/action/RequestProcessor.java
Index: RequestProcessor.java
===================================================================
RCS file:
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/RequestProcessor.java,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- RequestProcessor.java 28 Jan 2003 19:30:24 -0000 1.23
+++ RequestProcessor.java 30 Jan 2003 17:58:13 -0000 1.24
@@ -221,9 +221,9 @@
if (path == null) {
return;
}
- if (log.isInfoEnabled()) {
- log.info("Processing a '" + request.getMethod() +
- "' for path '" + path + "'");
+ if (log.isDebugEnabled()) {
+ log.debug("Processing a '" + request.getMethod() +
+ "' for path '" + path + "'");
}
// Select a Locale for the current user if requested
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]