wombatu-kun commented on code in PR #19022:
URL: https://github.com/apache/hudi/pull/19022#discussion_r3421305802
##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/sink/partitioner/profile/DeltaWriteProfile.java:
##########
@@ -109,7 +109,6 @@ protected long averageBytesPerRecord() {
}
}
}
- log.info("Refresh average bytes per record => " + avgSize);
return avgSize;
Review Comment:
With the `log.info` above removed, `DeltaWriteProfile` has no remaining
`log` usage, so its class-level `@Slf4j` annotation and the `import
lombok.extern.slf4j.Slf4j` (both added in #18991 for that line) are now dead.
The inherited `recordProfile()` still logs through `WriteProfile`'s own logger.
Drop the annotation and the import from `DeltaWriteProfile`.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]