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/08 07:53:00 UTC

[jira] [Updated] (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 updated HIVE-20224:
-------------------------------------
    Attachment: HIVE-20224.patch
        Status: Patch Available  (was: In Progress)

> 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
>            Assignee: Morio Ramdenbourg
>            Priority: Trivial
>              Labels: newb, newbie, noob
>         Attachments: HIVE-20224.patch
>
>
> {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)