diff options
author | Simon Rettberg | 2024-07-24 19:47:51 +0200 |
---|---|---|
committer | Simon Rettberg | 2024-07-24 19:47:51 +0200 |
commit | 22653efd7ca1652df18816e5aca817064df70bf1 (patch) | |
tree | a462bd2f2363b36c154eaf056a0737d2072cc84c | |
parent | Lower logging level for compressor output (diff) | |
download | master-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.xml | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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> |