This is an automated email from the ASF dual-hosted git repository.
zhangstar333 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 65cf3950191 [chore](errmsg) Daemon thread interruption should be info
log (#40297)
65cf3950191 is described below
commit 65cf3950191d93d509a8ccb655e9931722691158
Author: zclllhhjj <[email protected]>
AuthorDate: Tue Sep 3 19:48:52 2024 +0800
[chore](errmsg) Daemon thread interruption should be info log (#40297)
## Proposed changes
Issue Number: close #xxx
<!--Describe your changes.-->
---
fe/fe-core/src/main/java/org/apache/doris/common/util/Daemon.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/common/util/Daemon.java
b/fe/fe-core/src/main/java/org/apache/doris/common/util/Daemon.java
index 472285b4764..16ac3259318 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/common/util/Daemon.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/common/util/Daemon.java
@@ -121,7 +121,7 @@ public class Daemon extends Thread {
try {
Thread.sleep(intervalMs);
} catch (InterruptedException e) {
- LOG.error("InterruptedException: ", e);
+ LOG.info("InterruptedException: ", e);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]