How do you enable logging of sql queries generated by Exposed in Spring Boot?
The following do not work: logging.level.org.jetbrains.exposed.sql: DEBUG logging.level.org.jetbrains.exposed: DEBUG
How do you enable logging of sql queries generated by Exposed in Spring Boot?
The following do not work: logging.level.org.jetbrains.exposed.sql: DEBUG logging.level.org.jetbrains.exposed: DEBUG
logging.level.Exposed: DEBUG
Put it in application.properties. It will not work without the capital E on Exposed.
© 2022 - 2024 — McMap. All rights reserved.
<logger name="Exposed" level="debug"> <appender-ref ref="STDOUT" /> </logger>
– Deledda