Skip to content

Commit

Permalink
Suppress a startup warning
Browse files Browse the repository at this point in the history
The clickhouse lib wants slf4j 1.7.x and complains that no logger has been chosen. There is though a noop one we can use.

Fixes: SIRI-888
  • Loading branch information
idlira committed Jun 4, 2024
1 parent 3b89b47 commit cecf792
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@
<artifactId>clickhouse-jdbc</artifactId>
<version>0.4.6</version>
</dependency>
<!-- Suppress the Failed to load class org.slf4j.impl.StaticLoggerBinder warning -->
<!-- https://www.slf4j.org/codes.html#StaticLoggerBinder -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.7.36</version>
</dependency>
<dependency>
<groupId>org.lz4</groupId>
<artifactId>lz4-java</artifactId>
Expand Down

0 comments on commit cecf792

Please sign in to comment.