From 4c5105f4c3408a5956bf9713d568c82a6ecc8216 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 5 Dec 2024 11:52:21 +0100 Subject: [PATCH] Stop syncing log collection --- LeStorage/StoreCenter.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LeStorage/StoreCenter.swift b/LeStorage/StoreCenter.swift index 1fba4b6..4fed337 100644 --- a/LeStorage/StoreCenter.swift +++ b/LeStorage/StoreCenter.swift @@ -462,7 +462,7 @@ public class StoreCenter { if let logs = self._logs { return logs } else { - let logsCollection: StoredCollection = Store.main.registerCollection(synchronized: true, limit: 50) + let logsCollection: StoredCollection = Store.main.registerCollection(synchronized: false, limit: 1000) self._logs = logsCollection return logsCollection }