Suppressing info logging when using a maven plugin
Hello,
I am using the ready-api maven plugin to run tests. I have a composite project. I am trying to supress the logging and output file creation because it is filling up the filesystem on our jenkins build slave.
<logger name="com.smartbear.ready.cmd.runner.pro.SoapUIProTestCaseRunner" level="warn"
additivity="false">
<appender-ref ref="STDOUT"/>
</logger>
Here is what I have tried, none of which seems to supress the info logging:
- logback.xml in src/main/java/resources <- set the log level to warn for the SoapUIProTestCaseRunner
- logback.xml in src/test/java/resources <- set the log level to warn for the SoapUIProTestCaseRunner
- soapui-log4j.xml in src/main/java/resources <- set the log level to warn for the SoapUIProTestCaseRunner
- soapui-log4j.xml in src/test/java/resources <- set the log level to warn for the SoapUIProTestCaseRunner
I am wondering why the project is not picking up the logging level when I build it.
We do not have the acess to SOAP_UI home directory to install the logging configuration there. So, that is not an option for us.