You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2023/03/06 02:10:33 UTC

[iotdb] branch fix_time_partition updated: remove log

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

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


The following commit(s) were added to refs/heads/fix_time_partition by this push:
     new a4894b1ac5 remove log
a4894b1ac5 is described below

commit a4894b1ac5f5d5f8b4e9e6ce06fdea84ad19ddc2
Author: HTHou <hh...@outlook.com>
AuthorDate: Mon Mar 6 10:10:20 2023 +0800

    remove log
---
 .../org/apache/iotdb/db/engine/storagegroup/TimePartitionManager.java    | 1 -
 1 file changed, 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/TimePartitionManager.java b/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/TimePartitionManager.java
index ded5be3d28..640f8dfb95 100644
--- a/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/TimePartitionManager.java
+++ b/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/TimePartitionManager.java
@@ -78,7 +78,6 @@ public class TimePartitionManager {
         memCost += memSize - timePartitionInfo.memSize;
         timePartitionInfo.memSize = memSize;
         timePartitionInfo.isActive = isActive;
-        logger.error("{}", timePartitionInfoMemoryThreshold);
         if (memCost > timePartitionInfoMemoryThreshold) {
           evictOldPartition();
         }