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

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


The following commit(s) were added to refs/heads/autoai_debug_single by this 
push:
     new 46b7c35  add hashcode
46b7c35 is described below

commit 46b7c35c351cd9aa6684063dbb5f7185609cb6ac
Author: HTHou <[email protected]>
AuthorDate: Fri Jul 23 11:10:33 2021 +0800

    add hashcode
---
 .../java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/server/src/main/java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java
 
b/server/src/main/java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java
index 674cfc2..4d1fd6a 100644
--- 
a/server/src/main/java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java
+++ 
b/server/src/main/java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java
@@ -328,7 +328,7 @@ public class ExclusiveWriteLogNode implements WriteLogNode, 
Comparable<Exclusive
     }
     long elapse = System.currentTimeMillis() - start;
     if (elapse > 2000) {
-      logger.error("[wal] switch Working -> Flushing cost: {}ms", elapse);
+      logger.error("[wal] {} switch Working -> Flushing cost: {}ms", 
this.hashCode(), elapse);
     }
     logger.warn("[wal] {} switchBufferWorkingToFlushing end", this.hashCode());
   }
@@ -365,7 +365,7 @@ public class ExclusiveWriteLogNode implements WriteLogNode, 
Comparable<Exclusive
     }
     long elapse = System.currentTimeMillis() - start;
     if (elapse > 2000) {
-      logger.error("[wal] switch Flushing -> Idle cost: {}ms", elapse);
+      logger.error("[wal] {} switch Flushing -> Idle cost: {}ms", 
this.hashCode(), elapse);
     }
     logger.warn("[wal] {} switchBufferFlushingToIdle end", this.hashCode());
   }

Reply via email to