[catalog lock](log) enable info log level on catalog lock (#24471)

This commit is contained in:
shuke
2023-09-16 20:29:49 +08:00
committed by GitHub
parent dd2c455057
commit a2efa650ec

View File

@ -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));
}
}