diff --git a/GeminiProtocol/GeminiProtocol.swift b/GeminiProtocol/GeminiProtocol.swift index 649c508..6a6cb10 100644 --- a/GeminiProtocol/GeminiProtocol.swift +++ b/GeminiProtocol/GeminiProtocol.swift @@ -60,7 +60,6 @@ class GeminiProtocol: NWProtocolFramerImplementation { _ = framer.parseInput(minimumIncompleteLength: min, maximumLength: 1024 + 2) { (buffer, isComplete) -> Int in guard let buffer = buffer, buffer.count >= 2 else { return 0 } - print("got count: \(buffer.count)") self.lastAttemptedMetaLength = buffer.count let lastPossibleCRIndex = buffer.index(before: buffer.index(before: buffer.endIndex))