You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by dm...@apache.org on 2019/11/01 14:08:44 UTC

[hive] branch master updated: HIVE-22425: ReplChangeManager Not Debug Logging Database Name (David Mollitor, reviewed by Gopal Vijayaraghavan)

This is an automated email from the ASF dual-hosted git repository.

dmollitor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 3cf44ca  HIVE-22425: ReplChangeManager Not Debug Logging Database Name (David Mollitor, reviewed by Gopal Vijayaraghavan)
3cf44ca is described below

commit 3cf44cae5e91cdfcd09b2ca9f07a375e67f58d68
Author: David Mollitor <dm...@apache.org>
AuthorDate: Fri Nov 1 10:06:57 2019 -0400

    HIVE-22425: ReplChangeManager Not Debug Logging Database Name (David Mollitor, reviewed by Gopal Vijayaraghavan)
---
 .../main/java/org/apache/hadoop/hive/metastore/ReplChangeManager.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/ReplChangeManager.java b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/ReplChangeManager.java
index 54289af..c6acc57 100644
--- a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/ReplChangeManager.java
+++ b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/ReplChangeManager.java
@@ -481,7 +481,7 @@ public class ReplChangeManager {
         LOG.debug("repl policy for database {} is {}", db.getName(), replPolicyId);
         return replPolicyId;
       }
-      LOG.debug("Repl policy is not set for database ", db.getName());
+      LOG.debug("Repl policy is not set for database: {}", db.getName());
     }
     return null;
   }