You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Morio Ramdenbourg (JIRA)" <ji...@apache.org> on 2018/10/01 20:11:00 UTC

[jira] [Assigned] (HIVE-20224) ReplChangeManager.java Remove Logging Guards

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

Morio Ramdenbourg reassigned HIVE-20224:
----------------------------------------

    Assignee:     (was: Morio Ramdenbourg)

> ReplChangeManager.java Remove Logging Guards
> --------------------------------------------
>
>                 Key: HIVE-20224
>                 URL: https://issues.apache.org/jira/browse/HIVE-20224
>             Project: Hive
>          Issue Type: Improvement
>          Components: Metastore, Standalone Metastore
>    Affects Versions: 3.0.0, 4.0.0
>            Reporter: BELUGA BEHR
>            Priority: Trivial
>              Labels: newb, newbie, noob
>
> {code:java|title=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
> {code}



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