From e55725d758f36a63e5d64d0b9e577135951d4464 Mon Sep 17 00:00:00 2001 From: Kevin Hoffman Date: Thu, 24 Oct 2024 15:21:46 -0400 Subject: [PATCH] Update system_supervisor.go fix spelling Signed-off-by: Kevin Hoffman --- actors/system_supervisor.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actors/system_supervisor.go b/actors/system_supervisor.go index be45523c..9f125c8c 100644 --- a/actors/system_supervisor.go +++ b/actors/system_supervisor.go @@ -55,13 +55,13 @@ func (s *systemSupervisor) PreStart(context.Context) error { func (s *systemSupervisor) Receive(ctx *ReceiveContext) { switch ctx.Message().(type) { case *goaktpb.PostStart: - s.logger.Info("system supervior successfully started") + s.logger.Info("system supervisor successfully started") default: ctx.Unhandled() } } func (s *systemSupervisor) PostStop(context.Context) error { - s.logger.Info("system supervior stopped") + s.logger.Info("system supervisor stopped") return nil }