diff --git standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java index 1abd99d9bd..2bd7c210a1 100644 --- standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java +++ standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java @@ -392,7 +392,7 @@ public void setConf(Configuration conf) { throw new RuntimeException( "Unable to create persistence manager. Check dss.log for details"); } else { - LOG.info("Initialized ObjectStore"); + LOG.debug("Initialized ObjectStore"); } } finally { pmfPropLock.unlock(); @@ -477,7 +477,7 @@ private boolean isRetriableException(Throwable e) { * @param dsProps */ private void initializeHelper(Properties dsProps) { - LOG.info("ObjectStore, initialize called"); + LOG.debug("ObjectStore, initialize called"); prop = dsProps; pm = getPersistenceManager(); try {