Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
2.10.4
-
Novice
Description
In the method scheduleRoute(...) there is logging code that looks like:
if (LOG.isInfoEnabled()) { LOG.info("Scheduled trigger: {} for action: {} on route: ", new Object[]{trigger.getFullName(), action, route.getId()}); }
...but it's missing parameter placeholder for the routeId. It should be:
if (LOG.isInfoEnabled()) { LOG.info("Scheduled trigger: {} for action: {} on route: {}", new Object[]{trigger.getFullName(), action, route.getId()}); }