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 } }