From d7c31b51ec1b7ad7a7e744802cb0bfa474944187 Mon Sep 17 00:00:00 2001 From: Alsey Coleman Miller Date: Fri, 1 Apr 2016 13:59:01 -0500 Subject: [PATCH] removed debug print statements --- Sources/BluetoothLinux/ATTConnection.swift | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Sources/BluetoothLinux/ATTConnection.swift b/Sources/BluetoothLinux/ATTConnection.swift index 5692063..72517bc 100644 --- a/Sources/BluetoothLinux/ATTConnection.swift +++ b/Sources/BluetoothLinux/ATTConnection.swift @@ -76,11 +76,11 @@ public final class ATTConnection { /// Performs the actual IO for recieving data. public func read() throws { - print("Will read") + //print("Will read") let recievedData = try socket.recieve(maximumTransmissionUnit) - print("Recieved data") + //print("Recieved data") // valid PDU data length guard recievedData.byteValue.count >= ATT.MinimumPDULength @@ -92,7 +92,7 @@ public final class ATTConnection { guard let opcode = ATT.Opcode(rawValue: opcodeByte) else { throw Error.GarbageResponse(recievedData) } - print("Recieved opcode \(opcode)") + // print("Recieved opcode \(opcode)") // Act on the received PDU based on the opcode type switch opcode.type { @@ -119,20 +119,20 @@ public final class ATTConnection { /// Performs the actual IO for sending data. public func write() throws -> Bool { - print("Will write") + //print("Will write") guard let sendOpcode = pickNextSendOpcode() else { return false } assert(sendOpcode.data.count <= maximumTransmissionUnit, "Trying to send \(sendOpcode.data.count) bytes when MTU is \(maximumTransmissionUnit)") - print("Sending data... (\(sendOpcode.data.count) bytes)") + //print("Sending data... (\(sendOpcode.data.count) bytes)") try socket.send(Data(byteValue: sendOpcode.data)) let opcode = sendOpcode.dynamicType.PDUType.attributeOpcode - print("Did write \(opcode)") + //print("Did write \(opcode)") /* Based on the operation type, set either the pending request or the * pending indication. If it came from the write queue, then there is @@ -269,7 +269,7 @@ public final class ATTConnection { // actual PDU length let length = data.count - print("\(length) encoded bytes") + //print("\(length) encoded bytes") /// MTU must be large enough to hold PDU. guard length <= maximumTransmissionUnit else { return nil }