summaryrefslogtreecommitdiffstats
path: root/policy-management
diff options
context:
space:
mode:
Diffstat (limited to 'policy-management')
-rw-r--r--policy-management/pom.xml8
-rw-r--r--policy-management/src/main/server/config/logback.xml8
2 files changed, 12 insertions, 4 deletions
diff --git a/policy-management/pom.xml b/policy-management/pom.xml
index ed776b58..c2a3b376 100644
--- a/policy-management/pom.xml
+++ b/policy-management/pom.xml
@@ -299,12 +299,12 @@
<artifactId>mariadb-java-client</artifactId>
</dependency>
<dependency>
- <groupId>org.hibernate.orm</groupId>
- <artifactId>hibernate-core</artifactId>
+ <groupId>org.postgresql</groupId>
+ <artifactId>postgresql</artifactId>
</dependency>
<dependency>
- <groupId>org.hibernate.common</groupId>
- <artifactId>hibernate-commons-annotations</artifactId>
+ <groupId>org.hibernate.orm</groupId>
+ <artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
diff --git a/policy-management/src/main/server/config/logback.xml b/policy-management/src/main/server/config/logback.xml
index 1bd7770b..4e6756d9 100644
--- a/policy-management/src/main/server/config/logback.xml
+++ b/policy-management/src/main/server/config/logback.xml
@@ -3,6 +3,7 @@
policy-management
================================================================================
Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
+ Modifications Copyright (C) 2024 Nordix Foundation.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -137,11 +138,18 @@
<appender-ref ref="AsyncNetworkOut" />
</logger>
+ <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+ <encoder>
+ <pattern>${debugPattern}</pattern>
+ </encoder>
+ </appender>
+
<root level="INFO">
<appender-ref ref="AsyncDebugOut" />
<appender-ref ref="AsyncErrorOut" />
<appender-ref ref="AsyncMetricOut" />
<appender-ref ref="AsyncTransactionOut" />
+ <appender-ref ref="STDOUT" />
</root>
</configuration>