gortiz commented on PR #12909:
URL: https://github.com/apache/pinot/pull/12909#issuecomment-2051444563

   You don't need to modify the source code to change a log. Instead I would 
recommend to modify the log4j2.xml file you are using to disable the logging on 
this class (or change it to warn).
   
   For example, adding the following logger:
   
   ```
     <Loggers>
       <Root level="info" additivity="false">
         <AppenderRef ref="pinotLog"/>
       </Root>
       <Logger 
name="org.apache.pinot.segment.local.recordtransformer.SpecialValueTransformer" 
level="warn" additivity="false">
         <AppenderRef ref="pinotLog"/>
       </Logger>
     </Loggers>
   ```
   


-- 
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

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