Skip to content

Commit

Permalink
fix: add slf4j dependency
Browse files Browse the repository at this point in the history
One of the dependencies (zeebe-workflow-engine) requires this dependency. Running the engine without this will result in errors:

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
SLF4J: Failed to load class "org.slf4j.impl.StaticMDCBinder".
SLF4J: Defaulting to no-operation MDCAdapter implementation.
SLF4J: See http://www.slf4j.org/codes.html#no_static_mdc_binder for further details.

Adding this dependency resolves this issue and fixes the logging of the engine.
  • Loading branch information
remcowesterhoud committed Feb 11, 2022
1 parent 1febe64 commit 9932fbe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@
<artifactId>zeebe-client-java</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>

<!-- Test Scope -->
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down

0 comments on commit 9932fbe

Please sign in to comment.