Skip to content

Commit 49fc0a9

Browse files
authored
removed logs
1 parent e6b4a5b commit 49fc0a9

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

NewRelicVideoCore/src/main/java/com/newrelic/videoagent/core/tracker/NRVideoTracker.java

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)