I have a package imported through Maven which logs a lot of DEBUG level messages. Since I can’t control this package’s logback.xml (?), can I in some other fashion suppress the package’s output to stdout?
I have a package imported through Maven which logs a lot of DEBUG level
Share
Yes you can:
where
com.example.foois the package you want to filter. It is typically consistent with artifact’sgroupId. Also considerWARNlevel,OFFis also possible, however it may hide important problems.