You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by "timveil (via GitHub)" <gi...@apache.org> on 2023/12/08 20:54:38 UTC

[I] Loggers initialized with foreign classes [pinot]

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-unsubscribe@pinot.apache.org.apache.org

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


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


Re: [I] Loggers initialized with foreign classes [pinot]

Posted by "walterddr (via GitHub)" <gi...@apache.org>.
walterddr closed issue #12127: Loggers initialized with foreign classes
URL: https://github.com/apache/pinot/issues/12127


-- 
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-unsubscribe@pinot.apache.org

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


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