From b29f9536438d3690624186c37d9638e0fca330fb Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 10 Oct 2015 10:33:01 -0400 Subject: [PATCH] Stop logging transaction validation information. --- Source/ProtocolClient.m | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/Source/ProtocolClient.m b/Source/ProtocolClient.m index eddb442..91da70f 100644 --- a/Source/ProtocolClient.m +++ b/Source/ProtocolClient.m @@ -166,19 +166,7 @@ return; } - // Validate the transaction. - NSInteger transaction = [self transactionIDFromResponse:xml]; - if (transaction < _lastReadID) { - NSLog(@"Transaction #%d is out of date (lastRead = %d). Dropping packet: %@", - transaction, _lastReadID, message); - return; - } - if (transaction != _lastWrittenID) { - NSLog(@"Transaction #%d received out of order. lastRead = %d, lastWritten = %d. Continuing.", - transaction, _lastReadID, _lastWrittenID); - } - - _lastReadID = transaction; + _lastReadID = [self transactionIDFromResponse:xml]; entry.lastReadTransactionID = _lastReadID; [_delegate debuggerEngine:self receivedMessage:xml]; -- 2.22.5