From 3cedd179504404eab1f36b94433c0bc5058f9b1b Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Thu, 21 Nov 2019 15:34:49 +0800 Subject: [PATCH] generate hibernate statistics in dev profile --- komga/src/main/resources/application-dev.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/komga/src/main/resources/application-dev.yml b/komga/src/main/resources/application-dev.yml index e3aa090d4..19968b3a7 100644 --- a/komga/src/main/resources/application-dev.yml +++ b/komga/src/main/resources/application-dev.yml @@ -1,6 +1,3 @@ -logging.level: - web: DEBUG -# org.springframework.security.web.FilterChainProxy: DEBUG komga: threads: parse: 1 @@ -11,9 +8,16 @@ komga: spring: profiles: include: flyway + jpa: + properties: + hibernate: + generate_statistics: true logging: file: max-history: 1 name: komga-dev.log level: - org.gotson.komga: debug + org.gotson.komga: DEBUG + web: DEBUG + org.hibernate.stat: DEBUG + # org.springframework.security.web.FilterChainProxy: DEBUG