Hi, everyone
Currently, there are three kinds of java logging framework in hudi's project
(java.util.logging.Logger、org.apache.log4j.Logger、org.slf4j.Logger).
The org.apache.log4j.Logger doesn't support placeholders, so it‘s hard for us
to format the message like
| logger.info(String.format("The job needs to copy %d partitions.",
partitions.size())); |
So, I suggest migrate from log4j to slf4j, what dou you think?
Best,
lamberken
