Browse Source

Improve debug logging of requests to actuator endpoints on WebFlux

See gh-30880
pull/32644/head
christophejan 4 years ago committed by Andy Wilkinson
parent
commit
a1f3d68ead
  1. 10
      spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/reactive/AbstractWebFluxEndpointHandlerMapping.java

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

@ -384,6 +384,11 @@ public abstract class AbstractWebFluxEndpointHandlerMapping extends RequestMappi @@ -384,6 +384,11 @@ public abstract class AbstractWebFluxEndpointHandlerMapping extends RequestMappi
return this.operation.handle(exchange, body);
}
@Override
public String toString() {
return this.operation.toString();
}
}
/**
@ -402,6 +407,11 @@ public abstract class AbstractWebFluxEndpointHandlerMapping extends RequestMappi @@ -402,6 +407,11 @@ public abstract class AbstractWebFluxEndpointHandlerMapping extends RequestMappi
return this.operation.handle(exchange, null);
}
@Override
public String toString() {
return this.operation.toString();
}
}
private static class WebFluxEndpointHandlerMethod extends HandlerMethod {

Loading…
Cancel
Save