Author: fschumacher
Date: Sun Dec 2 11:07:03 2018
New Revision: 1847961
URL: http://svn.apache.org/viewvc?rev=1847961&view=rev
Log:
Use log format strings
Part of #435 and Bugzilla Id: 62972
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java?rev=1847961&r1=1847960&r2=1847961&view=diff
==============================================================================
---
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java
(original)
+++
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java
Sun Dec 2 11:07:03 2018
@@ -309,7 +309,7 @@ public class AccessLogSampler extends HT
try {
filter = (Filter)
Class.forName(filterClassName).getDeclaredConstructor().newInstance();
} catch (Exception e) {
- log.warn("Couldn't instantiate filter '" + filterClassName +
"'", e);
+ log.warn("Couldn't instantiate filter '{}'", filterClassName,
e);
}
}
}