Skip to content

Commit

Permalink
build: downgrade slf4j api to 1.7 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-ince authored Nov 20, 2023
1 parent 8ce0a3f commit 14222d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<reactive-streams.version>1.0.4</reactive-streams.version>
<reactor.version>3.5.10</reactor.version>
<slf4j-api.version>2.0.9</slf4j-api.version>
<slf4j-api.version>1.7.36</slf4j-api.version>
<sortpom-maven-plugin.version>3.3.0</sortpom-maven-plugin.version>
<spotless-maven-plugin.version>2.38.0</spotless-maven-plugin.version>
<testcontainers.version>1.19.0</testcontainers.version>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/neo4j/cdc/client/CDCClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,6 @@ private Mono<ChangeIdentifier> queryForChangeIdentifier(String query, String des
RxSession::close)
.doOnSubscribe(s -> log.trace("subscribed to {}", description))
.doOnSuccess(c -> log.trace("subscription to {} completed with '{}'", description, c))
.doOnError(t -> log.atError().setCause(t).log("subscription to {} failed", description));
.doOnError(t -> log.error("subscription to {} failed", description, t));
}
}

0 comments on commit 14222d9

Please sign in to comment.