Use NSLog instead of print.

This commit is contained in:
Qiu Yuzhou
2017-10-25 20:06:21 +08:00
parent dc4d022ade
commit f22d25b0f0

View File

@ -338,7 +338,7 @@ class ServerProfile: NSObject, NSCopying {
PingUtil.pingHost(serverHost, success: { (ping) in
self.ping = ping
}, failure: {
print("ping failure")
NSLog("Ping %@ fail", self.serverHost)
})
}
}