From 4ef1b8dc4ca3dfce3be16a7d154729e312e0f0ec Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 7 May 2016 20:55:41 -0400 Subject: [PATCH] Fix debug message --- .../src/com/limelight/nvstream/av/RtpReorderQueue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonlight-common/src/com/limelight/nvstream/av/RtpReorderQueue.java b/moonlight-common/src/com/limelight/nvstream/av/RtpReorderQueue.java index 81756c13..398850f7 100644 --- a/moonlight-common/src/com/limelight/nvstream/av/RtpReorderQueue.java +++ b/moonlight-common/src/com/limelight/nvstream/av/RtpReorderQueue.java @@ -127,7 +127,7 @@ public class RtpReorderQueue { // because this is validating that the queue will meet constraints _after_ // the current packet is enqueued. if (!dequeuePacket && queue.size() == maxSize - 1) { - LimeLog.info("Discarding RTP packet after queue overgrowth"); + LimeLog.info("Returning RTP packet after queue overgrowth"); dequeuePacket = true; }