From 08769a8752de5eb933ef3e3a8c2b9c9efb5d3cd7 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Sun, 8 Sep 2024 12:57:58 +0000 Subject: [PATCH] fix: accidental use of wrong logging package --- daemon/job/active.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/job/active.go b/daemon/job/active.go index b857aea..29f3060 100644 --- a/daemon/job/active.go +++ b/daemon/job/active.go @@ -482,7 +482,7 @@ func (j *ActiveSide) do(ctx context.Context) { go func() { select { case <-reset.Wait(ctx): - log.Info("reset received, cancelling current invocation") + GetLogger(ctx).Info("reset received, cancelling current invocation") cancelThisRun() case <-ctx.Done(): }