timveil opened a new issue, #12127:
URL: https://github.com/apache/pinot/issues/12127

   I found a number of instances were a `Logger` class is initialized with a 
class name other than the class in which it belongs.  This is typically 
unintentional and caused by copying logger initialization from one class to 
another.  Creating this issue to track the PR to correct these instances.  Here 
is a likely example...
   
   ```java
   public class SpecialValueTransformer implements RecordTransformer {
   
     private static final Logger LOGGER = 
LoggerFactory.getLogger(NullValueTransformer.class);
     ...
   ```
   
   in this instance the `LOGGER` should have been initialized with 
`SpecialValueTransformer.class` instead of `NullValueTransformer.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: commits-unsubscr...@pinot.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to