From 3566ad774d92d911482c2624fd49dd5a9527bf6e Mon Sep 17 00:00:00 2001 From: Glax Date: Thu, 31 Oct 2024 20:41:21 +0100 Subject: [PATCH] Moved logging to actually say if we added a job to the list --- Tranga/Jobs/JobBoss.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tranga/Jobs/JobBoss.cs b/Tranga/Jobs/JobBoss.cs index e3b8b9c..8a3a109 100644 --- a/Tranga/Jobs/JobBoss.cs +++ b/Tranga/Jobs/JobBoss.cs @@ -28,9 +28,9 @@ public class JobBoss : GlobalBase } else { - Log($"Added {job}"); if (!this.jobs.Add(job)) return false; + Log($"Added {job}"); UpdateJobFile(job, jobFile); } return true;