Disable the log from specific class/jar via logback.xml

Add the following to your logback.xml configuration file:

<logger name="org.hibernate.engine.jdbc.spi.SqlExceptionHelper" level="OFF"/>

The instruction: level="OFF" tells Logback to disable all log output for a given logger.

Leave a Comment