Improve toString for filtered router function
Issue: SPR-16829
This commit is contained in:
parent
543f190239
commit
b03905e2b0
|
@ -396,6 +396,10 @@ public abstract class RouterFunctions {
|
|||
this.routerFunction.accept(visitor);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return this.routerFunction.toString();
|
||||
}
|
||||
}
|
||||
|
||||
private static final class DefaultRouterFunction<T extends ServerResponse>
|
||||
|
|
Loading…
Reference in New Issue