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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6eb71f6  downgrade verbose log message to DEBUG (#8096)
6eb71f6 is described below

commit 6eb71f601b0a8fe33147e984e1de5ea93960b9f2
Author: Richard Startin <rich...@startree.ai>
AuthorDate: Tue Feb 1 07:25:58 2022 +0000

    downgrade verbose log message to DEBUG (#8096)
---
 .../java/org/apache/pinot/common/metadata/ZKMetadataProvider.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/pinot-common/src/main/java/org/apache/pinot/common/metadata/ZKMetadataProvider.java
 
b/pinot-common/src/main/java/org/apache/pinot/common/metadata/ZKMetadataProvider.java
index 1137ad6..8558e62 100644
--- 
a/pinot-common/src/main/java/org/apache/pinot/common/metadata/ZKMetadataProvider.java
+++ 
b/pinot-common/src/main/java/org/apache/pinot/common/metadata/ZKMetadataProvider.java
@@ -261,8 +261,8 @@ public class ZKMetadataProvider {
         }
       }
     }
-    if (schema != null) {
-      LOGGER.warn("Schema name does not match raw table name, schema name: {}, 
raw table name: {}",
+    if (schema != null && LOGGER.isDebugEnabled()) {
+      LOGGER.debug("Schema name does not match raw table name, schema name: 
{}, raw table name: {}",
           schema.getSchemaName(), 
TableNameBuilder.extractRawTableName(tableName));
     }
     return schema;

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to