hunshenshi created YARN-9484:
--------------------------------

             Summary: Fix SLF4j logging API in 
AbstractManagedParentQueue#removeChildQueue
                 Key: YARN-9484
                 URL: https://issues.apache.org/jira/browse/YARN-9484
             Project: Hadoop YARN
          Issue Type: Bug
          Components: capacity scheduler
    Affects Versions: 3.2.0
            Reporter: hunshenshi


{code:java}
if (LOG.isDebugEnabled()) {
  LOG.debug("Removed child queue: {}" + cs.getQueueName());
}
{code}
The '+' should be ','
{code:java}
if (LOG.isDebugEnabled()) {
  LOG.debug("Removed child queue: {}", cs.getQueueName());
}
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: yarn-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: yarn-issues-h...@hadoop.apache.org

Reply via email to