summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2024-02-07 18:02:53 +0100
committerSimon Rettberg2024-02-07 18:02:53 +0100
commit8167903bd02eed52e5af0536a906020e6e6fb2c6 (patch)
tree06fbcda97c596ad4e3b0dac8066dd639aa141d76
parent[filetransfer] Set state to WORKING when using local copying (diff)
downloadmaster-sync-shared-8167903bd02eed52e5af0536a906020e6e6fb2c6.tar.gz
master-sync-shared-8167903bd02eed52e5af0536a906020e6e6fb2c6.tar.xz
master-sync-shared-8167903bd02eed52e5af0536a906020e6e6fb2c6.zip
Change random numbers to make error go away
Error on startup of dmsd was: SLF4J: No SLF4J providers were found. SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See https://www.slf4j.org/codes.html#noProviders for further details. SLF4J: Class path contains SLF4J bindings targeting slf4j-api versions 1.7.x or earlier. SLF4J: Ignoring binding found at [jar:file:/opt/dmsd/dmsd.jar!/org/slf4j/impl/StaticLoggerBinder.class] The two URLs were of little help, but luckily just punching the last line into google lead to this SO post which solves the issue: https://stackoverflow.com/a/75162534/2043481
-rw-r--r--pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 28bc584..2ac2b79 100644
--- a/pom.xml
+++ b/pom.xml
@@ -189,7 +189,7 @@
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-slf4j-impl</artifactId>
+ <artifactId>log4j-slf4j2-impl</artifactId>
<version>[2.17,2.9999]</version>
<scope>compile</scope>
</dependency>