1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-06-03 10:43:01 +02:00

Add Debug output

This commit is contained in:
Glax 2025-05-16 14:36:48 +02:00
parent 16f5817a31
commit f6f86deb7f

@ -191,7 +191,9 @@ public static class Tranga
dueJobs
.Where(j =>
{
context.Entry(j).Collection(j => j.DependsOnJobs).Load(LoadOptions.ForceIdentityResolution);
Log.Debug($"Loading Job Preconditions {j}...");
context.Entry(j).Collection(j => j.DependsOnJobs).Load();
Log.Debug($"Loaded Job Preconditions {j}!");
return j.DependenciesFulfilled;
})
.Where(j =>