Added more logging to ThreadRestore

graph-rework-2
noah metz 2023-07-11 17:16:51 -06:00
parent f64455f8ed
commit 1fbfdf3b8c
1 changed files with 2 additions and 0 deletions

@ -551,7 +551,9 @@ var ThreadRestore = func(ctx * Context, thread Thread) {
return UpdateMoreStates(ctx, NodeList(thread.Children()), nodes, func(nodes NodeMap) error { return UpdateMoreStates(ctx, NodeList(thread.Children()), nodes, func(nodes NodeMap) error {
for _, child := range(thread.Children()) { for _, child := range(thread.Children()) {
should_run := (thread.ChildInfo(child.ID())).(*ParentThreadInfo) should_run := (thread.ChildInfo(child.ID())).(*ParentThreadInfo)
ctx.Log.Logf("thread", "THREAD_RESTORE: %s -> %s: %+v", thread.ID(), child.ID(), should_run)
if should_run.Start == true && child.State() != "finished" { if should_run.Start == true && child.State() != "finished" {
ctx.Log.Logf("thread", "THREAD_RESTORED: %s -> %s", thread.ID(), child.ID())
ChildGo(ctx, thread, child, should_run.RestoreAction) ChildGo(ctx, thread, child, should_run.RestoreAction)
} }
} }