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 ebe82e4c65..184ecb6db6 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 @@ -389,7 +389,7 @@ public void setConf(Configuration conf) { throw new RuntimeException( "Unable to create persistence manager. Check dss.log for details"); } else { - LOG.debug("Initialized ObjectStore"); + LOG.info("Initialized ObjectStore"); } } finally { pmfPropLock.unlock(); @@ -474,7 +474,7 @@ private boolean isRetriableException(Throwable e) { * @param dsProps */ private void initializeHelper(Properties dsProps) { - LOG.debug("ObjectStore, initialize called"); + LOG.info("ObjectStore, initialize called"); prop = dsProps; pm = getPersistenceManager(); try {