We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07a8b09 commit 4563e32Copy full SHA for 4563e32
spring-kafka/src/main/java/org/springframework/kafka/config/MethodKafkaListenerEndpoint.java
@@ -112,7 +112,9 @@ private String getReplyTopic() {
112
if (ann != null) {
113
if (method.getReturnType().equals(void.class)) {
114
if (this.logger.isWarnEnabled()) {
115
- this.logger.warn("Method has a void return type; @SendTo is ignored" +
+ this.logger.warn("Method "
116
+ + method
117
+ + " has a void return type; @SendTo is ignored" +
118
(this.errorHandler == null ? "" : " unless the error handler returns a result"));
119
}
120
0 commit comments