Stop logging transaction validation information.
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 10 Oct 2015 14:33:01 +0000 (10:33 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 10 Oct 2015 17:17:16 +0000 (13:17 -0400)
Source/ProtocolClient.m

index eddb442d487eb453a9f1d9e9a4b45f28e0e4e9b3..91da70fe44c8a1b3f2d84e94d9531d8eade7478b 100644 (file)
     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];