How to avoid cockpit operation logs

I am using slf4j logger in my application to print application logs. However when I do any operation on cockpit, its log is also getting printed.
In such a case, how I can skip cockpit logs getting printed along with application logs?
I don’t want cockpit logs to be printed when I am using cockpit.

Thanks in advance,

Hi @pramod_Rajane ,

What kind of logging implementation do you use? The easiest way is to configure blocklist on its configuation to ignore the particular loggers being printed in your output.

There is logback example on how to do it: java - Disable the log from specific class/jar via logback.xml - Stack Overflow