summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2024-07-24 19:47:51 +0200
committerSimon Rettberg2024-07-24 19:47:51 +0200
commit22653efd7ca1652df18816e5aca817064df70bf1 (patch)
treea462bd2f2363b36c154eaf056a0737d2072cc84c
parentLower logging level for compressor output (diff)
downloadmaster-sync-shared-22653efd7ca1652df18816e5aca817064df70bf1.tar.gz
master-sync-shared-22653efd7ca1652df18816e5aca817064df70bf1.tar.xz
master-sync-shared-22653efd7ca1652df18816e5aca817064df70bf1.zip
(Re)add log4j2 binding for slf4j (1)
To silence warnings on dmsd startup, we switched to the slf4j 2.x bindings for log4j2 in 8167903bd02ee. This however created the same problem for the client, as it is using slf4j 1.7 through a different dependency. Solve this by adding both bindings.
-rw-r--r--pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 2ac2b79..951fa34 100644
--- a/pom.xml
+++ b/pom.xml
@@ -189,6 +189,12 @@
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-slf4j-impl</artifactId>
+ <version>[2.17,2.9999]</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>[2.17,2.9999]</version>
<scope>compile</scope>