Copilot commented on code in PR #8162:
URL: https://github.com/apache/hbase/pull/8162#discussion_r3158528272


##########
hbase-server/src/main/java/org/apache/hadoop/hbase/wal/AbstractRecoveredEditsOutputSink.java:
##########
@@ -47,7 +47,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 exceeds the 100-character Checkstyle LineLength 
limit. Please wrap the assignment across multiple lines to avoid Checkstyle 
failures (max=100).
   ```suggestion
     private static final Logger LOG =
       LoggerFactory.getLogger(AbstractRecoveredEditsOutputSink.class);
   ```



##########
hbase-server/src/test/java/org/apache/hadoop/hbase/tool/BulkLoadHFilesSplitRecoveryTestBase.java:
##########
@@ -86,7 +86,7 @@
  */
 public class BulkLoadHFilesSplitRecoveryTestBase {
 
-  private static final Logger LOG = 
LoggerFactory.getLogger(TestHRegionServerBulkLoad.class);
+  private static final Logger LOG = 
LoggerFactory.getLogger(BulkLoadHFilesSplitRecoveryTestBase.class);

Review Comment:
   This logger declaration exceeds the 100-character Checkstyle LineLength 
limit. Please wrap the assignment across multiple lines (as done in other 
updated logger declarations) to keep the line length <= 100.
   ```suggestion
     private static final Logger LOG =
       LoggerFactory.getLogger(BulkLoadHFilesSplitRecoveryTestBase.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]

Reply via email to