From 5c21240ca63b0dca66c111c2d3504ce7661426fc Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 16 May 2024 11:07:19 +0200 Subject: [PATCH] Remove log --- LeStorage/MicroStorage.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LeStorage/MicroStorage.swift b/LeStorage/MicroStorage.swift index 23b8798..5ce349d 100644 --- a/LeStorage/MicroStorage.swift +++ b/LeStorage/MicroStorage.swift @@ -70,7 +70,7 @@ public class OptionalStorage { let jsonString = try FileUtils.readDocumentFile(fileName: fileName) if let decoded: T = try jsonString.decode() { self.item = decoded - Logger.log("user loaded with: \(jsonString)") +// Logger.log("user loaded with: \(jsonString)") } } } catch {