Issue missing parameter

This commit is contained in:
glax 2023-05-31 22:34:13 +02:00
parent 61ecefb615
commit 48b7371a18

View File

@ -116,10 +116,9 @@ public class TaskManager
if (!this._allTasks.Contains(task)) if (!this._allTasks.Contains(task))
return; return;
logger?.WriteLine(this.GetType().ToString(), $"Forcing Execution: {task}");
Task t = new(() => Task t = new(() =>
{ {
task.Execute(this); task.Execute(this, this.logger);
}); });
t.Start(); t.Start();
} }