From e1ccb4d6e861ae40f74f9fb8a3459b773c8103e0 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Thu, 30 Jan 2025 15:27:34 -0500 Subject: [PATCH] Fix phase logging --- phases.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phases.go b/phases.go index f8c798e..21510e7 100644 --- a/phases.go +++ b/phases.go @@ -199,7 +199,7 @@ func (this *environment) phase60Initialization() bool { initializable = actors.initializable.all() }() if err := this.initializeActors(this.ctx, initializable...); err != nil { - log.Println(".// (60) failed to initialize:", err) + log.Println("XXX (60) failed to initialize:", err) return false } if this.Verb() { log.Println(".// (60) initialized") }