My question can seem quite strange but I wanted to configure my logback.xml to stop printing certain logs.
For instance, my console is polluted by a so called ERROR because a key value in a property file is duplicated. I'm aware of this problem but it's not impacting in any sorts the process. But in this case I have so many of them that I can't look at the actual logs.
I've been told to add an appender in the logback file to change the level of logs from the class and thus not printing ERROR level logs. But I don't really know how to do it.
Here is the log
14/11/2018_15:02:19.654 [main] ERROR [f.a.t.core.resources.ResourceManager] duplicated key in resources :
it's just ERROR level log from this class "f.a.t.core.resources.ResourceManager" that I don't want. Does anyone have faced a similar issue please ?