This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a commit to branch DebugLevel
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/DebugLevel by this push:
new fd116e01b8 Change log level
fd116e01b8 is described below
commit fd116e01b8719e3866a1dcb0d26adc4feda17770
Author: JackieTien97 <[email protected]>
AuthorDate: Wed Nov 2 10:19:23 2022 +0800
Change log level
---
.../iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/server/src/main/java/org/apache/iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java
b/server/src/main/java/org/apache/iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java
index a84f4e9c4e..7a4841bc45 100644
---
a/server/src/main/java/org/apache/iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java
+++
b/server/src/main/java/org/apache/iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java
@@ -59,7 +59,7 @@ public class FragmentInstanceExecution {
FragmentInstanceExecution execution =
new FragmentInstanceExecution(instanceId, context, driver,
stateMachine);
execution.initialize(failedInstances, scheduler);
- LOGGER.info("timeout is {}ms.", timeOut);
+ LOGGER.debug("timeout is {}ms.", timeOut);
scheduler.submitDrivers(instanceId.getQueryId(), ImmutableList.of(driver),
timeOut);
return execution;
}