2
0

Moved logging to actually say if we added a job to the list

This commit is contained in:
Glax 2024-10-31 20:41:21 +01:00
parent bd8cb86c52
commit 3566ad774d

View File

@ -28,9 +28,9 @@ public class JobBoss : GlobalBase
} }
else else
{ {
Log($"Added {job}");
if (!this.jobs.Add(job)) if (!this.jobs.Add(job))
return false; return false;
Log($"Added {job}");
UpdateJobFile(job, jobFile); UpdateJobFile(job, jobFile);
} }
return true; return true;