remove random print("hi \(path)") message (#1273)

This commit is contained in:
Johannes Weiss 2019-11-27 21:33:35 +00:00 committed by GitHub
parent ee0ed3b129
commit abe5219b71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -555,7 +555,6 @@ let channel = try { () -> Channel in
case .ip(let host, let port):
return try socketBootstrap.bind(host: host, port: port).wait()
case .unixDomainSocket(let path):
print("hi \(path)")
return try socketBootstrap.bind(unixDomainSocketPath: path).wait()
case .stdio:
return try pipeBootstrap.withPipes(inputDescriptor: STDIN_FILENO, outputDescriptor: STDOUT_FILENO).wait()