Improve debug logging of requests to actuator endpoints on WebFlux
See gh-30880
This commit is contained in:
parent
0e7c3547dd
commit
a1f3d68ead
|
@ -384,6 +384,11 @@ public abstract class AbstractWebFluxEndpointHandlerMapping extends RequestMappi
|
||||||
return this.operation.handle(exchange, body);
|
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);
|
return this.operation.handle(exchange, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return this.operation.toString();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class WebFluxEndpointHandlerMethod extends HandlerMethod {
|
private static class WebFluxEndpointHandlerMethod extends HandlerMethod {
|
||||||
|
|
Loading…
Reference in New Issue