Improve toString for filtered router function

Issue: SPR-16829
This commit is contained in:
Arjen Poutsma 2018-05-17 12:02:23 +02:00
parent 543f190239
commit b03905e2b0
1 changed files with 4 additions and 0 deletions

View File

@ -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>