From e3201a9b9909ffa0cd85fc7fdf1d0679af618896 Mon Sep 17 00:00:00 2001
From: glax <johanna@bernloehr.eu>
Date: Mon, 31 Jul 2023 01:50:26 +0200
Subject: [PATCH] Ignore Logger

---
 Tranga/CommonObjects.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Tranga/CommonObjects.cs b/Tranga/CommonObjects.cs
index 2e543eb..531b3fd 100644
--- a/Tranga/CommonObjects.cs
+++ b/Tranga/CommonObjects.cs
@@ -9,7 +9,7 @@ public class CommonObjects
 {
     public HashSet<LibraryManager> libraryManagers { get; init; }
     public HashSet<NotificationManager> notificationManagers { get; init; }
-    public Logger? logger { get; set; }
+    [JsonIgnore]public Logger? logger { get; set; }
     [JsonIgnore]private string settingsFilePath { get; init; }
 
     public CommonObjects(HashSet<LibraryManager>? libraryManagers, HashSet<NotificationManager>? notificationManagers, Logger? logger, string settingsFilePath)