From 9d02e946891a475e70b7c27e445ccd9e7a987fdd Mon Sep 17 00:00:00 2001 From: pierre-maraval Date: Thu, 12 Oct 2023 08:15:07 +0200 Subject: [PATCH] FIX : Chgt niveau de logs environnements --- src/main/resources/application-dev.properties | 2 ++ src/main/resources/application-prod.properties | 3 +++ src/main/resources/application-test.properties | 3 +++ 3 files changed, 8 insertions(+) diff --git a/src/main/resources/application-dev.properties b/src/main/resources/application-dev.properties index 92cabb9..50fff6c 100644 --- a/src/main/resources/application-dev.properties +++ b/src/main/resources/application-dev.properties @@ -1,3 +1,5 @@ # Producer properties spring.kafka.producer.bootstrap-servers= +logging.level.root=INFO +logging.level.fr.abes=DEBUG diff --git a/src/main/resources/application-prod.properties b/src/main/resources/application-prod.properties index fba28cc..5f0354b 100644 --- a/src/main/resources/application-prod.properties +++ b/src/main/resources/application-prod.properties @@ -1,2 +1,5 @@ # Producer properties spring.kafka.producer.bootstrap-servers= + +logging.level.root=INFO +logging.level.fr.abes=ERROR \ No newline at end of file diff --git a/src/main/resources/application-test.properties b/src/main/resources/application-test.properties index fba28cc..0b0c281 100644 --- a/src/main/resources/application-test.properties +++ b/src/main/resources/application-test.properties @@ -1,2 +1,5 @@ # Producer properties spring.kafka.producer.bootstrap-servers= + +logging.level.root=INFO +logging.level.fr.abes=DEBUG \ No newline at end of file