You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.warn("Warning: the amount of data sent to the viewer is too big.\nPlease try to optimize your code to send less data (try replacing some commitEntityStates by a commitWorldState).");
248
+
viewWarning = true;
246
249
}
247
250
248
251
log.info(viewData);
@@ -479,8 +482,9 @@ public void addToGameSummary(String summary) {
479
482
if (total < GAME_SUMMARY_PER_TURN_HARD_QUOTA && total + totalGameSummaryBytes < GAME_SUMMARY_TOTAL_HARD_QUOTA) {
480
483
this.currentGameSummary.add(summary);
481
484
totalGameSummaryBytes += total;
482
-
} else {
485
+
} elseif (!summaryWarning) {
483
486
log.warn("Warning: the game summary is full. Please try to send less data.");
0 commit comments