mcvsubbu commented on a change in pull request #4954: Support schema evolution 
for consuming segments
URL: https://github.com/apache/incubator-pinot/pull/4954#discussion_r363556801
 
 

 ##########
 File path: 
pinot-core/src/main/java/org/apache/pinot/core/query/pruner/SegmentPrunerService.java
 ##########
 @@ -52,7 +52,7 @@ public SegmentPrunerService(SegmentPrunerConfig config) {
   public boolean prune(IndexSegment segment, ServerQueryRequest queryRequest) {
     for (SegmentPruner segmentPruner : _segmentPruners) {
       if (segmentPruner.prune(segment, queryRequest)) {
-        LOGGER.debug("Pruned segment: {}", segment.getSegmentName());
+        LOGGER.debug("{} pruned segment: {}", 
segmentPruner.getClass().getName(), segment.getSegmentName());
 
 Review comment:
   LOGGER  can be configured to log the class name, line number, etc. so we 
should not be logging class name

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to