Commit ad48e8ff by Johannes Edmeier

Less verbose info logging for finding routes

parent 3f1de78f
......@@ -76,7 +76,7 @@ public class ApplicationRouteLocator implements RouteLocator {
}
public ProxyRouteSpec getMatchingRoute(String path) {
LOGGER.info("Finding route for path: {}", path);
LOGGER.debug("Finding route for path: {}", path);
LOGGER.debug("servletPath={}", this.servletPath);
if (StringUtils.hasText(this.servletPath) && !this.servletPath.equals("/")
&& path.startsWith(this.servletPath)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment