Chris Wolf created CAMEL-6202:
---------------------------------

             Summary: Missing log parameter placeholder in 
routepolicy.quartz.ScheduledRoutePolicy
                 Key: CAMEL-6202
                 URL: https://issues.apache.org/jira/browse/CAMEL-6202
             Project: Camel
          Issue Type: Bug
          Components: camel-quartz
    Affects Versions: 2.10.4
            Reporter: Chris Wolf
            Priority: Trivial



In the method scheduleRoute(...) there is logging code that looks like:

{code}
  if (LOG.isInfoEnabled()) {
    LOG.info("Scheduled trigger: {} for action: {} on route: ", 
        new Object[]{trigger.getFullName(), action, route.getId()});
  }
{code}

...but it's missing parameter placeholder for the routeId.  It should be:

{code}
  if (LOG.isInfoEnabled()) {
    LOG.info("Scheduled trigger: {} for action: {} on route: {}", 
        new Object[]{trigger.getFullName(), action, route.getId()});
  }
{code}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to