My Spring Boot application keeps showing Hibernate queries in the console despite having configured Hibernate\'s specific logging with Logback as follows:
&l
My application is a spring-boot one,
For some reason in my case the property 'spring.jpa.show-sql=false' didn't work. I could see the sql with the bind values keep on printing the queries in the console/log.
It is resolved by changing the root level to error like below
Though we change log level to error in the root, we still can print our package/application logs in the info mode my using the separate loggers like below
putting here so it might help someone.
Thanks