[ 
https://issues.apache.org/jira/browse/HDFS-14407?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Akira Ajisaka updated HDFS-14407:
---------------------------------
    Summary: Fix mistakenly used of SLF4j logging in 
DatasetVolumeChecker#checkAllVolumes  (was: Fix mistakenly used of SLF4j or 
Log4j2 logging in DatasetVolumeChecker#checkAllVolumes)

> Fix mistakenly used of SLF4j logging in DatasetVolumeChecker#checkAllVolumes
> ----------------------------------------------------------------------------
>
>                 Key: HDFS-14407
>                 URL: https://issues.apache.org/jira/browse/HDFS-14407
>             Project: Hadoop HDFS
>          Issue Type: Bug
>            Reporter: Wanqiang Ji
>            Assignee: Wanqiang Ji
>            Priority: Minor
>         Attachments: HDFS-14407.001.patch
>
>
>  Wrong:
> {code:java}
> LOG.warn("checkAllVolumes timed out after {} ms" +
>     maxAllowedTimeForCheckMs);
> {code}
> Correct:
> {code:java}
> LOG.warn("checkAllVolumes timed out after {} ms",
>     maxAllowedTimeForCheckMs);
> {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]

Reply via email to