Merge pull request #30880 from christophejan

* gh-30880:
  Improve debug logging of requests to actuator endpoints on WebFlux

Closes gh-30880
This commit is contained in:
Andy Wilkinson 2022-05-06 17:49:40 +01:00
commit cbea3c1647

View File

@ -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
return this.operation.handle(exchange, null);
}
@Override
public String toString() {
return this.operation.toString();
}
}
private static class WebFluxEndpointHandlerMethod extends HandlerMethod {