diff options
author | Grant Limberg <grant.limberg@red.com> | 2016-05-31 15:01:42 -0700 |
---|---|---|
committer | Grant Limberg <grant.limberg@red.com> | 2016-05-31 15:01:42 -0700 |
commit | 51e74f8d4f200a7e3be9a6ac4bef8486f83a5d5d (patch) | |
tree | 91cf43b21d5527e33d436cd703902e4b4ae0fda4 | |
parent | b4f3dfc34727ec99853e22e7abb0c1dff9e5c205 (diff) | |
download | infinitytier-51e74f8d4f200a7e3be9a6ac4bef8486f83a5d5d.tar.gz infinitytier-51e74f8d4f200a7e3be9a6ac4bef8486f83a5d5d.zip |
remove some extra logging
-rw-r--r-- | ZeroTier One/ServiceCom.swift | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ZeroTier One/ServiceCom.swift b/ZeroTier One/ServiceCom.swift index 28957265..3aa9dc54 100644 --- a/ZeroTier One/ServiceCom.swift +++ b/ZeroTier One/ServiceCom.swift @@ -22,19 +22,10 @@ class ServiceCom: NSObject { // authtoken.secret exists, use it. var appSupportDir = try NSFileManager.defaultManager().URLForDirectory(.ApplicationSupportDirectory, inDomain: .UserDomainMask, appropriateForURL: nil, create: false) - NSLog("\(appSupportDir)") - - appSupportDir = appSupportDir.URLByAppendingPathComponent("ZeroTier") - NSLog("\(appSupportDir)") - appSupportDir = appSupportDir.URLByAppendingPathComponent("One") - NSLog("\(appSupportDir)") - let authtokenURL = appSupportDir.URLByAppendingPathComponent("authtoken.secret") - NSLog("\(authtokenURL)") - if NSFileManager.defaultManager().fileExistsAtPath(authtokenURL.path!) { Holder.key = try String(contentsOfURL: authtokenURL) } |