Copilot commented on code in PR #8152:
URL: https://github.com/apache/hbase/pull/8152#discussion_r3148425811
##########
hbase-server/src/main/java/org/apache/hadoop/hbase/wal/AbstractRecoveredEditsOutputSink.java:
##########
@@ -46,7 +46,7 @@
@InterfaceAudience.Private
abstract class AbstractRecoveredEditsOutputSink extends OutputSink {
- private static final Logger LOG =
LoggerFactory.getLogger(RecoveredEditsOutputSink.class);
+ private static final Logger LOG =
LoggerFactory.getLogger(AbstractRecoveredEditsOutputSink.class);
Review Comment:
This logger declaration is likely to exceed typical checkstyle max line
length used in HBase modules. Please wrap to match the prevalent style in this
PR (e.g., split assignment and `LoggerFactory.getLogger(...)` across lines) to
avoid checkstyle failures.
```suggestion
private static final Logger LOG =
LoggerFactory.getLogger(AbstractRecoveredEditsOutputSink.class);
```
--
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]