You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ja...@apache.org on 2022/11/28 08:15:43 UTC

[iotdb] branch ErrorLogToWarn created (now e37f065298)

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

jackietien pushed a change to branch ErrorLogToWarn
in repository https://gitbox.apache.org/repos/asf/iotdb.git


      at e37f065298 Change error log to warn level

This branch includes the following new commits:

     new e37f065298 Change error log to warn level

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[iotdb] 01/01: Change error log to warn level

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jackietien pushed a commit to branch ErrorLogToWarn
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit e37f06529863c703fa9ab7301273b105438acd22
Author: JackieTien97 <ja...@gmail.com>
AuthorDate: Mon Nov 28 16:15:30 2022 +0800

    Change error log to warn level
---
 .../org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java b/server/src/main/java/org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java
index c18be1ecf5..b32d55adf5 100644
--- a/server/src/main/java/org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java
+++ b/server/src/main/java/org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java
@@ -129,7 +129,7 @@ public class ConfigExecution implements IQueryExecution {
   }
 
   private void fail(Throwable cause) {
-    LOGGER.error("Failures happened during running ConfigExecution.", cause);
+    LOGGER.warn("Failures happened during running ConfigExecution.", cause);
     stateMachine.transitionToFailed(cause);
     ConfigTaskResult result;
     if (cause instanceof IoTDBException) {