Hi Nilay, On Thu, 14 Jul 2022 at 09:36, Nilay Prafulla Dhamecha <npraf...@tibco.com.invalid> wrote: > SLF4J: Class path contains multiple SLF4J bindings. > SLF4J: Found binding in > [jar:file:/lib/slf4j-log4j12-1.7.31.jar!/org/slf4j/impl/StaticLoggerBinder.class] > SLF4J: Found binding in > [jar:file:/lib/slf4j-simple-1.7.31.jar!/org/slf4j/impl/StaticLoggerBinder.class] > SLF4J: Found binding in > [jar:file:/lib/log4j-slf4j-impl-2.17.1.jar!/org/slf4j/impl/StaticLoggerBinder.class] > > > We are trying to either fix this warning or hide the warning messages from > the console but we are unable to do so. > Is there any property by which we can hide these or any other way to do the > same?
The warning is quite explicit regarding the nature of the problem: remove the SLF4J bindings you don't need (probably `slf4j-log4j12` and `slf4j-simple`) and the message will disappear. Piotr