Author: fschumacher
Date: Sun Mar 26 11:18:15 2017
New Revision: 1788716
URL: http://svn.apache.org/viewvc?rev=1788716&view=rev
Log:
Use vellip entity.
Modified:
jmeter/trunk/xdocs/changes.xml
Modified: jmeter/trunk/xdocs/changes.xml
URL:
http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1788716&r1=1788715&r2=1788716&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
+++ jmeter/trunk/xdocs/changes.xml [utf-8] Sun Mar 26 11:18:15 2017
@@ -198,7 +198,7 @@ listeners hold and a rework of the way G
<note>If you need to change the level programmatically from Groovy code or
Beanshell, you need to do the following:
<source>
import org.apache.logging.log4j.core.config.Configurator;
- ...
+ ⋮
final String loggerName = te.getClass().getName(); // te being a JMeter
class
Configurator.setAllLevels(loggerName, Level.DEBUG);
</source>
@@ -211,14 +211,14 @@ listeners hold and a rework of the way G
<source>
import org.apache.jorphan.logging.LoggingManager;
import org.apache.log.Logger;
- ...
+ ⋮
private static final Logger log = LoggingManager.getLoggerForClass();
</source>
By:
<source>
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
- ...
+ ⋮
private static final Logger log =
LoggerFactory.getLogger(YourClassName.class);
</source>
</note>