diff options
author | Simon Rettberg | 2024-02-07 18:02:53 +0100 |
---|---|---|
committer | Simon Rettberg | 2024-02-07 18:02:53 +0100 |
commit | 8167903bd02eed52e5af0536a906020e6e6fb2c6 (patch) | |
tree | 06fbcda97c596ad4e3b0dac8066dd639aa141d76 | |
parent | [filetransfer] Set state to WORKING when using local copying (diff) | |
download | master-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.xml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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> |