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

jinsongzhou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git


The following commit(s) were added to refs/heads/master by this push:
     new 027226dfe [Improvement]: Optimize log output of SchedulingPolicy #3755
027226dfe is described below

commit 027226dfef0245d0b22d09ce7b319da6a7bb6f9d
Author: Aireed <[email protected]>
AuthorDate: Mon Sep 1 10:40:21 2025 +0800

    [Improvement]: Optimize log output of SchedulingPolicy #3755
---
 .../java/org/apache/amoro/server/optimizing/SchedulingPolicy.java     | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/amoro-ams/src/main/java/org/apache/amoro/server/optimizing/SchedulingPolicy.java
 
b/amoro-ams/src/main/java/org/apache/amoro/server/optimizing/SchedulingPolicy.java
index 4193add83..0759f1e36 100644
--- 
a/amoro-ams/src/main/java/org/apache/amoro/server/optimizing/SchedulingPolicy.java
+++ 
b/amoro-ams/src/main/java/org/apache/amoro/server/optimizing/SchedulingPolicy.java
@@ -100,10 +100,6 @@ public class SchedulingPolicy {
   private Comparator<DefaultTableRuntime> createSorterByPolicy() {
     if (sorterFactoryCache.get(policyName) != null) {
       SorterFactory sorterFactory = sorterFactoryCache.get(policyName);
-      LOG.debug(
-          "Using sorter instance {} corresponding to the scheduling policy {}",
-          sorterFactory.getClass().getName(),
-          policyName);
       return sorterFactory.createComparator();
     } else {
       throw new IllegalArgumentException("Unsupported scheduling policy: " + 
policyName);

Reply via email to