From ed4bf692cfbe6bfb346dcffccfe02d21293937d7 Mon Sep 17 00:00:00 2001 From: Kishore Battula Date: Thu, 23 Jul 2020 13:34:39 +0530 Subject: [PATCH] Enabled transaction logger and slf4jlogger --- integration-tests/pom.xml | 2 +- pom.xml | 20 ++++++++++++++++++-- src/main/resources/application.properties | 6 +++++- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index 1efd0e5..b4cfd76 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -60,7 +60,7 @@ org.opengroup.osdu os-core-common - 0.0.10-SNAPSHOT + 0.3.4 org.springframework.boot diff --git a/pom.xml b/pom.xml index 1f481dd..7b77740 100644 --- a/pom.xml +++ b/pom.xml @@ -60,7 +60,7 @@ 2.7.0 0.9.0.RELEASE 3.3.0.RELEASE - 0.0.6-SNAPSHOT + 0.0.11 @@ -75,11 +75,17 @@ org.opengroup.osdu os-core-common - 0.0.10-SNAPSHOT + 0.3.4 org.springframework.boot spring-boot-starter + + + org.springframework.boot + spring-boot-starter-logging + + org.projectlombok @@ -114,6 +120,16 @@ org.springframework.boot spring-boot-starter-security + + + ch.qos.logback + logback-classic + + + org.apache.logging.log4j + log4j-to-slf4j + + org.springframework.security diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index b6bc550..dd15604 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -55,4 +55,8 @@ azure.graph-api.uri=https://graph.windows.net azure.graph-api.appid=00000002-0000-0000-c000-000000000000 # Azure Graph Api Version -azure.graph-api.version=1.6 \ No newline at end of file +azure.graph-api.version=1.6 + +#logging configuration +logging.transaction.enabled=true +logging.slf4jlogger.enabled=true \ No newline at end of file -- GitLab