Skip to content

Commit b0e6d93

Browse files
committed
tweak value
1 parent aa6d21e commit b0e6d93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/uid2/optout/traffic/TrafficCalculator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ TrafficStatus determineStatus(int recentTrafficTotal, int baselineTraffic) {
566566
double thresholdPercent = (double) recentTrafficTotal / threshold * 100;
567567

568568
// log warning if we reach 50 percent of the threshold
569-
if (thresholdPercent >= 75.0) {
569+
if (thresholdPercent >= 80.0) {
570570
LOGGER.warn("high_message_volume: {}% of threshold reached, recentTrafficTotal={}, threshold={} ({}x{})",
571571
String.format("%.1f", thresholdPercent), recentTrafficTotal, threshold, thresholdMultiplier, baselineTraffic);
572572
}

0 commit comments

Comments
 (0)