Author: lukaszlenart Date: Wed May 29 09:16:09 2013 New Revision: 1487418 URL: http://svn.apache.org/r1487418 Log: Uses proper logging structure
Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/DefaultActionProxy.java Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/DefaultActionProxy.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/DefaultActionProxy.java?rev=1487418&r1=1487417&r2=1487418&view=diff ============================================================================== --- struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/DefaultActionProxy.java (original) +++ struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/DefaultActionProxy.java Wed May 29 09:16:09 2013 @@ -77,7 +77,7 @@ public class DefaultActionProxy implemen this.invocation = inv; this.cleanupContext = cleanupContext; if (LOG.isDebugEnabled()) { - LOG.debug("Creating an DefaultActionProxy for namespace " + namespace + " and action name " + actionName); + LOG.debug("Creating an DefaultActionProxy for namespace [#0] and action name [#1]", namespace, actionName); } this.actionName = StringEscapeUtils.escapeHtml4(actionName);