Skip to content

Commit

Permalink
remove extraneous print
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Feb 28, 2018
1 parent 1ea6f2f commit cfd8cc0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Sources/AppleTLS/AppleTLSSocket.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public final class AppleTLSSocket: TLSSocket {
public func read(into buffer: MutableByteBuffer) throws -> TLSSocketStatus {
var processed = 0
let status = SSLRead(context, buffer.baseAddress!, buffer.count, &processed)
print("PROCESSED: \(processed)")
switch status {
case errSecSuccess:
if processed == 0 { self.close() }
Expand Down

0 comments on commit cfd8cc0

Please sign in to comment.