Add Debug output

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

View File

@ -191,7 +191,9 @@ public static class Tranga
dueJobs dueJobs
.Where(j => .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; return j.DependenciesFulfilled;
}) })
.Where(j => .Where(j =>