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: [email protected]
For additional commands, e-mail: [email protected]