Details
-
Improvement
-
Status: Resolved
-
Low
-
Resolution: Fixed
-
None
-
None
Description
logger.debug("Estimating {} compactions to do for {}.{}",
new Object[]
);
It does not print list as intended. Arrays.asList(estimated).toString() results in object reference number, not list itself making debug message useless.
list should be printed by code like this:
String delim = "";
for (Item i : list)