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

ddanielr pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new e7a763b653 Switch to using logger for conf build message (#5424)
e7a763b653 is described below

commit e7a763b65359bb6d5caffc4c4f9be9ef0d0a473c
Author: Daniel Roberts <ddani...@gmail.com>
AuthorDate: Mon Mar 24 13:51:26 2025 -0400

    Switch to using logger for conf build message (#5424)
    
    This line is constantly generated in the manager.out log if the
    HostRegexTableLoadBalancer is used.
---
 .../apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/src/main/java/org/apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java
 
b/core/src/main/java/org/apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java
index 22b87aa3e4..b64863fee1 100644
--- 
a/core/src/main/java/org/apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java
+++ 
b/core/src/main/java/org/apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java
@@ -153,7 +153,7 @@ public class HostRegexTableLoadBalancer extends 
TableLoadBalancer {
     private final Map<String,Pattern> poolNameToRegexPattern;
 
     HrtlbConf(PluginEnvironment.Configuration conf) {
-      System.out.println("building hrtlb conf");
+      LOG.info("Building conf");
       String oobProperty = conf.get(HOST_BALANCER_OOB_CHECK_KEY);
       if (oobProperty != null) {
         oobCheckMillis = ConfigurationTypeHelper.getTimeInMillis(oobProperty);

Reply via email to