Details
-
Improvement
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
3.0.0, 4.0.0
Description
metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ReplChangeManager.java
if (LOG.isDebugEnabled()) { LOG.debug("A file with the same content of {} already exists, ignore", path.toString()); } // ----> LOG.debug("A file with the same content of {} already exists, ignore", path); if (LOG.isDebugEnabled()) { LOG.debug("Encoded URI: " + encodedUri); } // ----> LOG.debug("Encoded URI: {}", encodedUri); if (LOG.isDebugEnabled()) { LOG.debug("Move " + file.toString() + " to trash"); } // ----> LOG.debug("Move {} to trash", file); ... others