spring-bootloggingpropertiesdatasourcehikaricp

Logging HikariCP Spring boot


i set my properties in my application.yml

spring.datasource.hikari.connection-timeout: 30000
spring.datasource.hikari.maximum-pool-size: 10
spring.datasource.hikari.idle-timeout: 600000
spring.datasource.hikari.minimum-idle: 10

Spring is 2.1.9.RELEASE

How can i log these parameter to check that the application has taken the configurations correctly?

Thank's


Solution

  • If you have springboot and you want logging your HikariCP parameters to check that the application has taken the configurations correctly put this in your application.yaml or application.properties

    logging.level.com.zaxxer.hikari.HikariConfig=DEBUG 
    logging.level.com.zaxxer.hikari=TRACE
    

    Console will show you all