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 2019/01/14 22:14:35 UTC

svn commit: r1851298 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParserCacheLoader.java

Author: pmouawad
Date: Mon Jan 14 22:14:34 2019
New Revision: 1851298

URL: http://svn.apache.org/viewvc?rev=1851298&view=rev
Log:
Better logging

Modified:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParserCacheLoader.java

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParserCacheLoader.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParserCacheLoader.java?rev=1851298&r1=1851297&r2=1851298&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParserCacheLoader.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParserCacheLoader.java Mon Jan 14 22:14:34 2019
@@ -72,8 +72,7 @@ public class CssParserCacheLoader implem
         final URLCollection urls = new URLCollection(new ArrayList<>());
 
         if (aCSS == null) {
-            LOG.warn("Failed parsing CSS: " + baseUrl
-                    + ", got null CascadingStyleSheet");
+            LOG.warn("Failed parsing CSS: {}, got null CascadingStyleSheet", baseUrl);
             return urls;
         }