Extra information that keeps getting logged in terminal in Gatling 3.7.0

So i recently upgraded to gatling version 3.7.0 from 3.2. And after running my simulation test there is some extra information that keeps getting logged in terminal as follows:-

n=31 offset=0 test=true char==
n=31 offset=31 test=false char==
n=25 offset=0 test=true char==
n=25 offset=25 test=false char==
n=9 offset=0 test=true char="
n=9 offset=9 test=false char="
n=484 offset=28 test=true char=[
n=484 offset=484 test=false char=[
n=9 offset=0 test=true char="
n=9 offset=9 test=false char="
n=13 offset=0 test=true char=[
n=13 offset=13 test=false char=[
n=47 offset=23 test=true char="

Why exactly is this getting logged and how do i remove this?

Why have you just upgraded to 3.7.0? The latest version is 3.7.6 and it will fix your issue.

hi @slandelle , Thanx i upgraded to 3.7.6 and it resolved my issue. Bu Still there are some more info that is getting logged-

‘gatling.http.ahc.sslEnabledCipherSuites’ was renamed into gatling.ssl.enabledCipherSuites and will be removed in the next minor release. Please rename.
‘gatling.http.ssl.keyStore.password’ was renamed into gatling.ssl.keyStore.password and will be removed in the next minor release. Please rename.
‘gatling.http.ahc.sslSessionCacheSize’ was renamed into gatling.ssl.sessionCacheSize= and will be removed in the next minor release. Please rename.
‘gatling.http.ahc.maxThreadLocalCharBufferSize’ was renamed into gatling.netty.maxThreadLocalCharBufferSize and will be removed in the next minor release. Please rename.
‘gatling.http.ssl.keyStore.type’ was renamed into gatling.ssl.keyStore.type and will be removed in the next minor release. Please rename.

will they be automtically corrected in the next release or do i have to change something?

Also,
06:52:52.772 [WARN ] i.g.c.u.Resource$ClasspathResource$ - Your resource’s path /Users/sharmava/gatling-perfromance/src/main/resources/data/user_data/abc.csv is incorrect.
It should not be relative to your project root on the filesystem.
Instead, it should be relative to your classpath root.
We’ve clean it up into /Users/sharmava/gatling-perfromance/data/user_data/abc.csv for you but please fix it.
i didn’t understand this warning why is this occuring now? it didn’t occured for previous gatling versions?

will they be automtically corrected in the next release or do i have to change something?

Did you read those messages?
They explicitly require that you rename those properties. Next version should completely ignore the ones you use.

i didn’t understand this warning

Classpath resource paths should be relative to what will be in the generated jar.
In your case, I think the automatic clean up is wrong, it should be cleaned to : data/user_data/abc.csv
Oracle Java Official documentation

why is this occuring now? it didn’t occured for previous gatling versions?

We added these warnings in order to help people that make that mistake like you did.