*** Using gatling 2.0.3
I am seeing different log output when I run my tests through maven on a Mac machine and on a Linux machines. This is what my logback.xml file looks like:
<?xml version="1.0" encoding="UTF-8"?> %d{HH:mm:ss.SSS} [%-5level] %logger{15} - %msg%n%rEx falseOn my Mac, It works as expected and only failed requests gets logged. On the Ubuntu machine, all requests and responses get logged. Any ideas why this might be happening?
Here is the gatling plugin definition in maven:
io.gatling gatling-maven-plugin 2.0.0 src/test/resources/data target/results src/test/resources/request-bodies src/test/scalaHere is how I am running the tests:
mvn gatling:execute -Dgatling.simulationClass=com.cliqueintelligence.qa.performance.test.simulations.UploadFileSimulation
Thanks,
Steve