This commit is contained in:
Spencer Gibb
2017-12-18 14:45:31 -05:00
parent 461958e168
commit ae206985e2
2 changed files with 6 additions and 1 deletions

View File

@@ -103,6 +103,11 @@
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>

View File

@@ -86,7 +86,7 @@ public class RoutePredicateHandlerMapping extends AbstractHandlerMapping {
//TODO: error handling
.map(route -> {
if (logger.isDebugEnabled()) {
logger.debug("RouteDefinition matched: " + route.getId());
logger.debug("Route matched: " + route.getId());
}
validateRoute(route, exchange);
return route;