File tree Expand file tree Collapse file tree 1 file changed +1
-16
lines changed
NewRelicVideoCore/src/main/java/com/newrelic/videoagent/core/tracker Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -564,27 +564,12 @@ private void checkAndSendQoeAggregateIfNeeded() {
564564 long currentTime = System .currentTimeMillis ();
565565 // Use user-configured harvest cycle
566566 long harvestCycleMs = NRVideo .getHarvestCycleSeconds () * 1000L ;
567-
568- NRLog .d ("Checking QOE_AGGREGATE cycle - currentTime: " + currentTime +
569- ", lastHarvestCycleTimestamp: " + lastHarvestCycleTimestamp +
570- ", harvestCycleMs: " + harvestCycleMs );
571-
572567 // Check if we're in a new harvest cycle
573568 if (lastHarvestCycleTimestamp == null ||
574569 (currentTime - lastHarvestCycleTimestamp ) >= harvestCycleMs ) {
575-
576- // New harvest cycle - reset flags
577- if (lastHarvestCycleTimestamp != null ) {
578- NRLog .d ("New harvest cycle started - resetting QOE_AGGREGATE flags (cycle: " +
579- (harvestCycleMs / 1000 ) + "s)" );
580- }
581570 resetHarvestCycleFlags ();
582571 lastHarvestCycleTimestamp = currentTime ;
583572 }
584-
585- NRLog .d ("QOE_AGGREGATE flags - hasVideoActionInCurrentCycle: " + hasVideoActionInCurrentCycle +
586- ", qoeAggregateAlreadySent: " + qoeAggregateAlreadySent );
587-
588573 // Send QOE_AGGREGATE if we haven't sent it yet and we have video actions
589574 if (hasVideoActionInCurrentCycle && !qoeAggregateAlreadySent ) {
590575 sendQoeAggregate ();
@@ -1452,4 +1437,4 @@ private static long safeAdd(long a, long b) {
14521437
14531438 return result ;
14541439 }
1455- }
1440+ }
You can’t perform that action at this time.
0 commit comments