From 3753e09e16bf3fa53cc06b2d00846e8f9a5c82c0 Mon Sep 17 00:00:00 2001 From: Laurent Date: Mon, 1 Jul 2024 18:56:51 +0200 Subject: [PATCH] remove log --- LeStorage/ApiCallCollection.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LeStorage/ApiCallCollection.swift b/LeStorage/ApiCallCollection.swift index 49ddf17..3c826e7 100644 --- a/LeStorage/ApiCallCollection.swift +++ b/LeStorage/ApiCallCollection.swift @@ -66,7 +66,7 @@ actor ApiCallCollection: SomeCallCollection { if FileManager.default.fileExists(atPath: fileURL.path()) { let jsonString: String = try FileUtils.readFile(fileURL: fileURL) let decoded: [ApiCall] = try jsonString.decodeArray() ?? [] - Logger.log("loaded \(fileURL.lastPathComponent) with \(decoded.count) items") +// Logger.log("loaded \(fileURL.lastPathComponent) with \(decoded.count) items") self.items = decoded } }