码迷,mamicode.com
首页 > 其他好文 > 详细

Jmeter-Maven-Plugin高级应用:Log Levels

时间:2016-10-22 11:57:21      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:mat   rect   select   any   pre   input   val   space   pos   

Log Levels

Log Levels


 

How To <overrideRootLogLevel>

You can specify a root log level for debug purposes.

+---+
<project>
    [...]
        <build>
            <plugins>
                <plugin>
                    <groupId>com.lazerycode.jmeter</groupId>
                    <artifactId>jmeter-maven-plugin</artifactId>
                    <version>2.0.3</version>
                    <executions>
                        <execution>
                            <id>jmeter-tests</id>
                            <goals>
                                <goal>jmeter</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <overrideRootLogLevel>debug</overrideRootLogLevel>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    [...]
</project>
+---+

Setting the root log level will always override any settings for individual category log levels (as a result if the <overrideRootLogLevel> is set all category log levels set elsewhere will be ignored.

 

Advanced Log Configuration

If you add a "logkit.xml" into the <testFilesDirectory> it will now be copied into the /bin folder. If one does not exist the default one supplied with JMeter will be used instead. If you don‘t want to call your advanced log config file "logkit.xml", you can specify the filename using:

+---+
<project>
    [...]
        <build>
            <plugins>
                <plugin>
                    <groupId>com.lazerycode.jmeter</groupId>
                    <artifactId>jmeter-maven-plugin</artifactId>
                    <version>2.0.3</version>
                    <executions>
                        <execution>
                            <id>jmeter-tests</id>
                            <goals>
                                <goal>jmeter</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <logConfigFilename>myFile.xml</logConfigFilename>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    [...]
</project>
+---+

 

Individual Log Levels

You can override individual log levels by setting them in your jmeter.properties file. If you want to override them in the POM have a look at Adding Additional Properties To <propertiesJMeter>.

Jmeter-Maven-Plugin高级应用:Log Levels

标签:mat   rect   select   any   pre   input   val   space   pos   

原文地址:http://www.cnblogs.com/ceshi2016/p/5987024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!