Bläddra i källkod

remove some extra logging

Grant Limberg 9 år sedan
förälder
incheckning
51e74f8d4f
1 ändrade filer med 0 tillägg och 9 borttagningar
  1. 0 9
      ZeroTier One/ServiceCom.swift

+ 0 - 9
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)
                 }