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:44 UTC

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

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) {