Improve toString for filtered router function

Issue: SPR-16829

(cherry picked from commit f722f40)
This commit is contained in:
Arjen Poutsma
2018-05-17 12:02:23 +02:00
parent c7adf28f61
commit 3c88029dd3

View File

@@ -375,6 +375,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>