Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.7.0, 2.8.0, 3.0.0-alpha1
-
None
-
Reviewed
Description
HDFS-7706 Switch BlockManager logging to use slf4j. But the logging formats were not modified appropriately. For example:
if (LOG.isDebugEnabled())
These codes should be modified to:
LOG.debug("blocks = {}", java.util.Arrays.asList(blocks));