exec(
http( "Some Restful Service" )
.get( pathToService )
.check( jsonPath( "$" ).saveAs( "RESPONSE_DATA" ) )
)
.exec( session => {
println( "Some Restful Service:" )
println( session( "RESPONSE_DATA" ).as[String] )
session
})
.check( bodyString.saveAs( "RESPONSE_DATA" ) )
mvn -Dlogback.configurationFile=conf/logback-debug.xml -Dgatling.simulationClass=XXX gatling:test
whereas my "logback-debug.xml" looks like this