Jackie-Jiang commented on code in PR #15436:
URL: https://github.com/apache/pinot/pull/15436#discussion_r2040138757


##########
pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/rebalance/DefaultRebalancePreChecker.java:
##########
@@ -74,16 +74,17 @@ public Map<String, RebalancePreCheckerResult> 
check(PreCheckContext preCheckCont
     String tableNameWithType = preCheckContext.getTableNameWithType();
     TableConfig tableConfig = preCheckContext.getTableConfig();
     RebalanceConfig rebalanceConfig = preCheckContext.getRebalanceConfig();
+    Logger tableRebalanceLogger = LoggerFactory.getLogger(LOGGER.getName() + 
"_" + rebalanceJobId);

Review Comment:
   Consider also including table name, then we can simplify the log content to 
not log table name
   ```suggestion
       Logger tableRebalanceLogger = 
LoggerFactory.getLogger(getClass().getSimpleName() + "-" + tableNameWithType + 
"-" rebalanceJobId);
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to