0

I am using spring boot v1.3.4 and the turned off the logging adding the below line in application.properties:

logging.level. = OFF

When this line is added, no debug messages are logged except org.hibernate.SQL messages. I am using JDNI and don't have any other hibernate configuration in the properties. Is there any reason why hibernate messages are not suppressed when the logging is turned off?

Ali Dehghani
  • 46,221
  • 15
  • 164
  • 151
kiran
  • 2,280
  • 2
  • 23
  • 30

1 Answers1

0

logging.level.org.hibernate.SQL=WARN should help you.. you already know the full qualified name of the class to suppress so why don't you try it?

WesternGun
  • 11,303
  • 6
  • 88
  • 157