Skip to content

Commit cbea3c1

Browse files
committed
Merge pull request #30880 from christophejan
* gh-30880: Improve debug logging of requests to actuator endpoints on WebFlux Closes gh-30880
2 parents 0e7c354 + a1f3d68 commit cbea3c1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/reactive/AbstractWebFluxEndpointHandlerMapping.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,11 @@ Publisher<ResponseEntity<Object>> handle(ServerWebExchange exchange,
384384
return this.operation.handle(exchange, body);
385385
}
386386

387+
@Override
388+
public String toString() {
389+
return this.operation.toString();
390+
}
391+
387392
}
388393

389394
/**
@@ -402,6 +407,11 @@ Publisher<ResponseEntity<Object>> handle(ServerWebExchange exchange) {
402407
return this.operation.handle(exchange, null);
403408
}
404409

410+
@Override
411+
public String toString() {
412+
return this.operation.toString();
413+
}
414+
405415
}
406416

407417
private static class WebFluxEndpointHandlerMethod extends HandlerMethod {

0 commit comments

Comments
 (0)