Skip to content

Commit 7fbb9d4

Browse files
committed
Polish "Upgrade to Neo4j Java Driver 4.2.8"
See gh-28717
1 parent 73cc238 commit 7fbb9d4

File tree

1 file changed

+8
-1
lines changed
  • spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/neo4j

1 file changed

+8
-1
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/neo4j/Neo4jSpringJclLogging.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -80,6 +80,13 @@ public void debug(String format, Object... params) {
8080
}
8181
}
8282

83+
@Override
84+
public void debug(String message, Throwable throwable) {
85+
if (isDebugEnabled()) {
86+
this.delegate.debug(message, throwable);
87+
}
88+
}
89+
8390
@Override
8491
public void trace(String format, Object... params) {
8592
if (isTraceEnabled()) {

0 commit comments

Comments
 (0)