From df099a7c8e9cefdea3ed01c527547a0361bc3d81 Mon Sep 17 00:00:00 2001 From: Youssef Date: Thu, 6 Aug 2026 22:53:45 +0200 Subject: [PATCH] chore: disable verbose Hibernate SQL logging --- as-talange-web/src/main/resources/application.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/as-talange-web/src/main/resources/application.yml b/as-talange-web/src/main/resources/application.yml index ee272af..f7934bf 100644 --- a/as-talange-web/src/main/resources/application.yml +++ b/as-talange-web/src/main/resources/application.yml @@ -9,10 +9,10 @@ spring: jpa: hibernate: ddl-auto: validate - show-sql: true + show-sql: false properties: hibernate: - format_sql: true + format_sql: false flyway: enabled: true locations: classpath:db/migration @@ -41,4 +41,7 @@ sporteasy: logging: level: com.astalange: DEBUG + org.hibernate: WARN + org.hibernate.SQL: WARN + org.hibernate.type.descriptor.sql: WARN