From 036eca2160fd9e8ab1074393974505ed714c11f9 Mon Sep 17 00:00:00 2001 From: Nick Chan Date: Wed, 5 Jun 2024 13:36:36 +0800 Subject: [PATCH] Remove debug log --- Shared/RepoHandler.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/Shared/RepoHandler.swift b/Shared/RepoHandler.swift index 99ae5a3..8d542ca 100644 --- a/Shared/RepoHandler.swift +++ b/Shared/RepoHandler.swift @@ -99,9 +99,7 @@ public class RepoHandler { #if !os(macOS) if ((url.pathComponents.last ?? "").contains("Packages") || (url.pathComponents.last ?? "").contains("Release")) { - log("URL: \(url.absoluteString)") let fileName = "\(url.deletingPathExtension().absoluteString.replacingOccurrences(of: "https://", with: "").replacingOccurrences(of: "http://", with: "").replacingOccurrences(of: "/", with: "_"))" - log("fileName: \(fileName)") let tempFilePath = FileManager.default.temporaryDirectory.appendingPathComponent(fileName) do { try data.write(to: tempFilePath)