You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ga...@apache.org on 2017/08/19 00:31:37 UTC

hive git commit: HIVE-17277 HiveMetastoreClient Log name is wrong (Zac Zhou via Alan Gates)

Repository: hive
Updated Branches:
  refs/heads/master 7a5c280b0 -> 3af012c60


HIVE-17277 HiveMetastoreClient Log name is wrong (Zac Zhou via Alan Gates)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/3af012c6
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/3af012c6
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/3af012c6

Branch: refs/heads/master
Commit: 3af012c60f050602d5f88c4a472dc2c36e1278e3
Parents: 7a5c280
Author: Alan Gates <ga...@hortonworks.com>
Authored: Fri Aug 18 17:30:43 2017 -0700
Committer: Alan Gates <ga...@hortonworks.com>
Committed: Fri Aug 18 17:30:43 2017 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/3af012c6/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java
----------------------------------------------------------------------
diff --git a/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java b/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java
index b1efb8c..688f181 100644
--- a/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java
+++ b/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java
@@ -123,7 +123,7 @@ public class HiveMetaStoreClient implements IMetaStoreClient, AutoCloseable {
   private long retryDelaySeconds = 0;
   private final ClientCapabilities version;
 
-  static final protected Logger LOG = LoggerFactory.getLogger("hive.metastore");
+  static final protected Logger LOG = LoggerFactory.getLogger(HiveMetaStoreClient.class);
 
   public HiveMetaStoreClient(HiveConf conf) throws MetaException {
     this(conf, null, true);