Disable logging of Reporting parameter values

Is it possible to disable the logging of Reporting parameter values in the log file?

My report has a groovy band that puts out a long list of values into a parameter for processing and i don’t want these values to get clogged up in the log file. The log entry example is as below:


com.haulmont.reports.libintegration.CubaReporting - Finished report [xxxxx] with parameters [
....
]

Hi David,

You can change logger level to ERROR for CubaReporting in the tomcat/conf/logback.xml

Please add

<logger name="com.haulmont.reports.libintegration.CubaReporting" level="ERROR"></logger>

More information about logging you can find in Setting up Logging in Tomcat - CUBA Platform. Developer’s Manual