diff --git a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java index fb9d87006c..aa190c0cf0 100644 --- a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java +++ b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java @@ -9636,7 +9636,7 @@ public boolean doesPartitionExist(String catName, String dbName, String tableNam private void debugLog(final String message) { if (LOG.isDebugEnabled()) { - LOG.debug("{}", message, new Exception()); + LOG.debug("{}", message, new Exception("Debug Dump Stack Trace (Not an Exception)")); } }