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

dataroaring 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 a2efa650ec [catalog lock](log) enable info log level on catalog lock 
(#24471)
a2efa650ec is described below

commit a2efa650ec99b0616bb7a26c36da3530c80a2ef8
Author: shuke <37901441+shuke...@users.noreply.github.com>
AuthorDate: Sat Sep 16 20:29:49 2023 +0800

    [catalog lock](log) enable info log level on catalog lock (#24471)
---
 fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java 
b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
index d648776980..2c80226e3d 100755
--- a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
@@ -859,7 +859,7 @@ public class Env {
                         // to see which thread held this lock for long time.
                         Thread owner = lock.getOwner();
                         if (owner != null) {
-                            LOG.debug("catalog lock is held by: {}", 
Util.dumpThread(owner, 10));
+                            LOG.info("catalog lock is held by: {}", 
Util.dumpThread(owner, 10));
                         }
                     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to