You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2012/09/04 22:00:01 UTC

svn commit: r1380835 - /jmeter/trunk/src/functions/org/apache/jmeter/functions/XPathFileContainer.java

Author: pmouawad
Date: Tue Sep  4 20:00:01 2012
New Revision: 1380835

URL: http://svn.apache.org/viewvc?rev=1380835&view=rev
Log:
Test log level

Modified:
    jmeter/trunk/src/functions/org/apache/jmeter/functions/XPathFileContainer.java

Modified: jmeter/trunk/src/functions/org/apache/jmeter/functions/XPathFileContainer.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/functions/org/apache/jmeter/functions/XPathFileContainer.java?rev=1380835&r1=1380834&r2=1380835&view=diff
==============================================================================
--- jmeter/trunk/src/functions/org/apache/jmeter/functions/XPathFileContainer.java (original)
+++ jmeter/trunk/src/functions/org/apache/jmeter/functions/XPathFileContainer.java Tue Sep  4 20:00:01 2012
@@ -59,7 +59,9 @@ public class XPathFileContainer {
 
     public XPathFileContainer(String file, String xpath) throws FileNotFoundException, IOException,
             ParserConfigurationException, SAXException, TransformerException {
-        log.debug("XPath(" + file + ") xpath " + xpath + "");
+        if(log.isDebugEnabled()) {
+            log.debug("XPath(" + file + ") xpath " + xpath);
+        }
         fileName = file;
         this.xpath = xpath;
         nextRow = 0;